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 7928a85 commit 6b49b10Copy full SHA for 6b49b10
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules/PosixModuleBuiltins.java
@@ -314,6 +314,11 @@ public void postInitialize(Python3Core core) {
314
PDict environ = core.factory().createDict();
315
String pyenvLauncherKey = "__PYVENV_LAUNCHER__";
316
for (Entry<String, String> entry : getenv.entrySet()) {
317
+ if(entry.getKey().equals("GRAAL_PYTHON_ARGS")) {
318
+ // was already processed at startup in GraalPythonMain and
319
+ // we don't want subprocesses to pick it up
320
+ continue;
321
+ }
322
Object key, val;
323
if (PythonOS.getPythonOS() == PythonOS.PLATFORM_WIN32) {
324
key = toTruffleStringUncached(entry.getKey());
0 commit comments