We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a25223 commit 5671246Copy full SHA for 5671246
Lib/test/test_subprocess.py
@@ -837,7 +837,9 @@ def is_env_var_to_ignore(n):
837
838
@unittest.skipIf(sysconfig.get_config_var('Py_ENABLE_SHARED') == 1,
839
'The Python shared library cannot be loaded '
840
- 'with an empty environment.')
+ 'without some system environments.')
841
+ @unittest.skipIf(check_sanitizer(address=True),
842
+ 'AddressSanitizer adds to the environment.')
843
def test_one_environment_variable(self):
844
newenv = {'fruit': 'orange'}
845
cmd = [sys.executable, '-c',
0 commit comments