Change by Ian Norton :
--
keywords: +patch
pull_requests: +23954
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/25216
___
Python tracker
<https://bugs.python.org/issu
Ian Norton added the comment:
This may also cause https://bugs.python.org/issue35644
--
___
Python tracker
<https://bugs.python.org/issue43749>
___
___
Pytho
New submission from Ian Norton :
On windows, the venv module does not copy the correct python exe if the current
running exe (eg sys.executable) has been renamed (eg, named python3.exe)
venv will only make copies of python.exe, pythonw.exe, python_d.exe or
pythonw_d.exe.
If for example the
New submission from Ian Norton :
When building on HP-UX using:
The configure stage fails to detect chroot(). This is due to setting
_XOPEN_SOURCE to a value higher than 500.
The fix for this is to not set _XOPEN_SOURCE when configuring for HP-UX
--
components: Interpreter Core