More PyImport_ImportModule -> PyImport_ImportModuleNoBlock

This commit is contained in:
Christian Heimes 2008-01-03 23:05:47 +00:00
parent 072c0f1b7e
commit 819b8bf403
4 changed files with 5 additions and 5 deletions

View file

@ -56,7 +56,7 @@ new_identifier(const char* n, PyArena *arena)
identifier; if so, normalize to NFKC. */
for (; *u; u++) {
if (*u >= 128) {
PyObject *m = PyImport_ImportModule("unicodedata");
PyObject *m = PyImport_ImportModuleNoBlock("unicodedata");
PyObject *id2;
if (!m)
return NULL;