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 499cd60 commit 9c6066cCopy full SHA for 9c6066c
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules/SysModuleBuiltins.java
@@ -145,6 +145,9 @@ public void initialize(PythonCore core) {
145
146
String os = getPythonOSName();
147
builtinConstants.put("platform", os);
148
+ if (os.equals("darwin")) {
149
+ builtinConstants.put("_framework", PNone.NONE);
150
+ }
151
builtinConstants.put("__gmultiarch", getPythonArch() + "-" + os);
152
153
super.initialize(core);
0 commit comments