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 52f85a3 commit c97cccfCopy full SHA for c97cccf
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules/PosixModuleBuiltins.java
@@ -330,6 +330,10 @@ public void postInitialize(Python3Core core) {
330
}
331
Object key, val;
332
if (PythonOS.getPythonOS() == PythonOS.PLATFORM_WIN32) {
333
+ if (entry.getKey().startsWith("=")) {
334
+ // Hidden variable, shouldn't be visible to python
335
+ continue;
336
+ }
337
key = toTruffleStringUncached(entry.getKey());
338
} else {
339
key = core.factory().createBytes(entry.getKey().getBytes());
0 commit comments