commit | 71382cb64bd9cbf76d8a1e0fe8297a973cd1fe4d | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Mon Apr 16 18:48:49 2012 +0200 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Mon Apr 16 18:48:49 2012 +0200 |
tree | f3cc3e65f81194057d3511bed6d840547a740ae9 | |
parent | a938c74751d3ffb23cb68044939a5c06d2d4f280 [diff] [blame] |
Fix reference loss on Py_None when None is encountered in sys.modules.
diff --git a/Python/import.c b/Python/import.c index 1b93b7c..bd0d18a 100644 --- a/Python/import.c +++ b/Python/import.c
@@ -2827,6 +2827,7 @@ if (msg != NULL) { PyErr_SetFromImportErrorWithName(msg, abs_name); } + mod = NULL; goto error_with_unlock; } else if (mod != NULL) {