diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-07-26 02:37:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-26 02:37:22 +0200 |
commit | ecf411c59e33d3760dbfebf6d5b4b205bcc29d5a (patch) | |
tree | 43bd3ffa6039eeb5f19a493fa72f70b5e0544dcf /Lib/test/test_cmd_line.py | |
parent | 48ed88a93bb0bbeaae9a4cfaa533e4edf13bcb51 (diff) | |
download | cpython-ecf411c59e33d3760dbfebf6d5b4b205bcc29d5a.tar.gz cpython-ecf411c59e33d3760dbfebf6d5b4b205bcc29d5a.zip |
bpo-34170: Enhance _PyCoreConfig_Read() (GH-8468)
* Inline cmdline_get_env_flags() into config_read_env_vars():
_PyCoreConfig_Read() now reads much more environment variables like
PYTHONVERBOSE.
* Allow to override faulthandler and allocator even if dev_mode=1.
PYTHONMALLOC is now the priority over PYTHONDEVMODE.
* Fix _PyCoreConfig_Copy(): copy also install_signal_handlers,
coerce_c_locale and coerce_c_locale_warn
* _PyCoreConfig.install_signal_handlers default is now 1: install
signals by default
* Fix also a compiler warning: don't define _PyPathConfig type twice.
Diffstat (limited to 'Lib/test/test_cmd_line.py')
-rw-r--r-- | Lib/test/test_cmd_line.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/test/test_cmd_line.py b/Lib/test/test_cmd_line.py index 034607454c5..21511b896ca 100644 --- a/Lib/test/test_cmd_line.py +++ b/Lib/test/test_cmd_line.py @@ -551,9 +551,7 @@ class CmdLineTest(unittest.TestCase): env = dict(os.environ) env.pop('PYTHONWARNINGS', None) env.pop('PYTHONDEVMODE', None) - # Force malloc() to disable the debug hooks which are enabled - # by default for Python compiled in debug mode - env['PYTHONMALLOC'] = 'malloc' + env.pop('PYTHONMALLOC', None) if xdev: args = (sys.executable, '-X', 'dev', *args) |