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 7c1cc53 commit 70a3305Copy full SHA for 70a3305
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/PythonLanguage.java
@@ -167,7 +167,8 @@ private boolean areOptionsCompatibleWithPreinitializedContext(OptionValues first
167
return (areOptionsCompatible(firstOptions, newOptions) &&
168
// we cache WithThread in SysConfigModuleBuiltins
169
firstOptions.get(PythonOptions.WithThread).equals(newOptions.get(PythonOptions.WithThread)) &&
170
- // disabling TRegex has an effect on the _sre Python functions that are dynamically created
+ // disabling TRegex has an effect on the _sre Python functions that are
171
+ // dynamically created
172
firstOptions.get(PythonOptions.WithTRegex).equals(newOptions.get(PythonOptions.WithTRegex)));
173
}
174
0 commit comments