summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
Diffstat (limited to 'Python')
-rw-r--r--Python/import.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c
index bedec1e..8159b5e 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -2031,7 +2031,7 @@ PyImport_ImportModuleNoBlock(const char *name)
else {
PyErr_Clear();
}
-
+#ifdef WITH_THREAD
/* check the import lock
* me might be -1 but I ignore the error here, the lock function
* takes care of the problem */
@@ -2047,6 +2047,9 @@ PyImport_ImportModuleNoBlock(const char *name)
name);
return NULL;
}
+#else
+ return PyImport_ImportModule(name);
+#endif
}
/* Forward declarations for helper routines */