Skip to content

Commit a2a8a43

Browse files
committed
fix style
1 parent ed73059 commit a2a8a43

File tree

1 file changed

+3
-2
lines changed
  • graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/cext/common

1 file changed

+3
-2
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/cext/common/CExtContext.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -391,8 +391,9 @@ public static Object loadCExtModule(Node location, PythonContext context, Module
391391

392392
private static boolean isForcedLLVM(String name) {
393393
if (PythonOS.getPythonOS() == PythonOS.PLATFORM_WIN32 &&
394-
("_cpython_unicodedata".equals(name) || "_cpython_sre".equals(name) || "_sqlite3".equals(name))) {
395-
// We build these internal extensions with the LLVM toolchain and link against the bitcode python-native,
394+
("_cpython_unicodedata".equals(name) || "_cpython_sre".equals(name) || "_sqlite3".equals(name))) {
395+
// We build these internal extensions with the LLVM toolchain and link against the
396+
// bitcode python-native,
396397
// not the fully native pythonjni. We cannot load them natively on Windows like that.
397398
return true;
398399
}

0 commit comments

Comments
 (0)