This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: test_cmd_line starts python without -E
Type: crash Stage:
Components: Tests Versions: Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ncoghlan Nosy List: ncoghlan, twouters
Priority: high Keywords:

Created on 2007-08-29 13:12 by twouters, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg55418 - (view) Author: Thomas Wouters (twouters) * (Python committer) Date: 2007-08-29 13:12
test_cmd_line tests various things by spawning sys.executable.
Unfortunately it does so without passing the -E argument (which 'make
test' does do) so environment variables like PYTHONHOME and PYTHONPATH
can cause the test to fail.
msg55823 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2007-09-11 14:03
Fixed for 2.6 in rev 58103

(Is the head still being merged to the py3k branch? Or does this need to
be forward-ported manually?)
History
Date User Action Args
2022-04-11 14:56:26adminsetgithub: 45397
2007-09-11 14:03:59ncoghlansetstatus: open -> closed
resolution: fixed
messages: + msg55823
nosy: + ncoghlan
2007-08-29 13:12:47twouterscreate