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 fd8e6cc commit 243e152Copy full SHA for 243e152
graalpython/lib-python/3/test/test_subprocess.py
@@ -832,7 +832,8 @@ def is_env_var_to_ignore(n):
832
n == 'PWD' or n == 'SHLVL' or # Graalpython bash launcher
833
n.startswith('JAVA_MAIN_CLASS') or # JVM on MacOS
834
n == 'LD_LIBRARY_PATH' or n == 'DYLD_LIBRARY_PATH' or # Added by graalpy launcher
835
- n == 'LC_CTYPE') # Locale coercion triggered
+ n == 'LC_CTYPE', # Locale coercion triggered
836
+ n == 'UNSAFE_PYO3_SKIP_VERSION_CHECK') # GraalPy change
837
838
with subprocess.Popen([sys.executable, "-c",
839
'import os; print(list(os.environ.keys()))'],
0 commit comments