@@ -138,14 +138,14 @@ public void initialize(PythonCore core) {
138
138
true , // dont_write_bytecode
139
139
false , // hash_randomization
140
140
false , // ignore_environment
141
- PythonOptions .getOption (core .getContext (), PythonOptions .InspectFlag ). booleanValue ( ), // inspect
142
- PythonOptions .getOption (core .getContext (), PythonOptions .InspectFlag ). booleanValue ( ), // interactive
141
+ PythonOptions .getFlag (core .getContext (), PythonOptions .InspectFlag ), // inspect
142
+ PythonOptions .getFlag (core .getContext (), PythonOptions .InspectFlag ), // interactive
143
143
false , // isolated
144
- PythonOptions .getOption (core .getContext (), PythonOptions .NoSiteFlag ). booleanValue ( ), // no_site
145
- PythonOptions .getOption (core .getContext (), PythonOptions .NoUserSiteFlag ). booleanValue ( ), // no_user_site
144
+ PythonOptions .getFlag (core .getContext (), PythonOptions .NoSiteFlag ), // no_site
145
+ PythonOptions .getFlag (core .getContext (), PythonOptions .NoUserSiteFlag ), // no_user_site
146
146
false , // optimize
147
- PythonOptions .getOption (core .getContext (), PythonOptions .QuietFlag ). booleanValue ( ), // quiet
148
- PythonOptions .getOption (core .getContext (), PythonOptions .VerboseFlag ). booleanValue ( ), // verbose
147
+ PythonOptions .getFlag (core .getContext (), PythonOptions .QuietFlag ), // quiet
148
+ PythonOptions .getFlag (core .getContext (), PythonOptions .VerboseFlag ), // verbose
149
149
}));
150
150
builtinConstants .put ("graal_python_core_home" , PythonOptions .getOption (core .getContext (), PythonOptions .CoreHome ));
151
151
builtinConstants .put ("graal_python_stdlib_home" , PythonOptions .getOption (core .getContext (), PythonOptions .StdLibHome ));
0 commit comments