commit | 819b8bf403f19017f9e7ea11cd83699b517f3394 | [log] [tgz] |
---|---|---|
author | Christian Heimes <christian@cheimes.de> | Thu Jan 03 23:05:47 2008 +0000 |
committer | Christian Heimes <christian@cheimes.de> | Thu Jan 03 23:05:47 2008 +0000 |
tree | 4dd4375104b5d3f1a9acb3c45909f04330240295 | |
parent | 072c0f1b7e3d83dec98313bc07ae92ed15fe7e6d [diff] [blame] |
More PyImport_ImportModule -> PyImport_ImportModuleNoBlock
diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c index d17da2a..79ed87d 100644 --- a/Parser/tokenizer.c +++ b/Parser/tokenizer.c
@@ -452,7 +452,7 @@ { PyObject *readline = NULL, *stream = NULL, *io = NULL; - io = PyImport_ImportModule("io"); + io = PyImport_ImportModuleNoBlock("io"); if (io == NULL) goto cleanup;