[issue16961] No regression tests for -E and individual environment vars

2019-05-14 Thread STINNER Victor
STINNER Victor added the comment: I added a lot of tests on environment variables and -I/-E options in test_embed. I consider that this issue is now fixed. -- nosy: +vstinner resolution: out of date -> fixed status: open -> closed ___ Python

[issue16961] No regression tests for -E and individual environment vars

2019-03-30 Thread Nick Coghlan
Nick Coghlan added the comment: Victor Stinner added a great many regression tests in this area for Python 3.7+ -- ___ Python tracker ___

[issue16961] No regression tests for -E and individual environment vars

2019-03-16 Thread SilentGhost
SilentGhost added the comment: Nick, please re-open if you feel this issue is still relevant. -- nosy: +SilentGhost resolution: -> out of date stage: -> resolved ___ Python tracker

[issue16961] No regression tests for -E and individual environment vars

2019-03-15 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16961] No regression tests for -E and individual environment vars

2015-06-27 Thread Nick Coghlan
Changes by Nick Coghlan ncogh...@gmail.com: -- assignee: ncoghlan - ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16961 ___ ___ Python-bugs-list

[issue16961] No regression tests for -E and individual environment vars

2014-07-16 Thread Mark Lawrence
Mark Lawrence added the comment: Consider yourself reminded :) -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16961 ___

[issue16961] No regression tests for -E and individual environment vars

2013-01-14 Thread Nick Coghlan
New submission from Nick Coghlan: Accessing an environment variable without Py_GETENV (or breaking Py_IgnoreEnvironmentFlag configuration *cough*) may lead to environment variables being accessed even if -E is passed on the command line. As part of the PEP 432 implementation, I'm adding