diff options
author | Christian Heimes <christian@cheimes.de> | 2008-01-03 23:05:47 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-01-03 23:05:47 (GMT) |
commit | 819b8bf403f19017f9e7ea11cd83699b517f3394 (patch) | |
tree | 4dd4375104b5d3f1a9acb3c45909f04330240295 /Python/ast.c | |
parent | 072c0f1b7e3d83dec98313bc07ae92ed15fe7e6d (diff) | |
download | cpython-819b8bf403f19017f9e7ea11cd83699b517f3394.zip cpython-819b8bf403f19017f9e7ea11cd83699b517f3394.tar.gz cpython-819b8bf403f19017f9e7ea11cd83699b517f3394.tar.bz2 |
More PyImport_ImportModule -> PyImport_ImportModuleNoBlock
Diffstat (limited to 'Python/ast.c')
-rw-r--r-- | Python/ast.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ast.c b/Python/ast.c index 3169de9..97486c5 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -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; |