diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-01-18 19:16:09 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-01-18 19:16:09 (GMT) |
commit | 6c40eb7f421804eba3c24a9336c4a9e59dba636c (patch) | |
tree | 7b5220e29f6c927c8834728d890f47227e79f409 | |
parent | 0c60381749cfb9af804cf3f961a110797ee192d9 (diff) | |
download | cpython-6c40eb7f421804eba3c24a9336c4a9e59dba636c.zip cpython-6c40eb7f421804eba3c24a9336c4a9e59dba636c.tar.gz cpython-6c40eb7f421804eba3c24a9336c4a9e59dba636c.tar.bz2 |
Fix the builtin module initialization code to store the init function for future reinitialization.
-rw-r--r-- | Misc/NEWS | 3 | ||||
-rw-r--r-- | Python/import.c | 4 |
2 files changed, 7 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.2.3? Core and Builtins ----------------- +- Fix the builtin module initialization code to store the init function for + future reinitialization. + - Issue #13629: Renumber the tokens in token.h so that they match the indexes into _PyParser_TokenNames. diff --git a/Python/import.c b/Python/import.c index e721498..ee3f9b0 100644 --- a/Python/import.c +++ b/Python/import.c @@ -2169,6 +2169,7 @@ init_builtin(char *name) for (p = PyImport_Inittab; p->name != NULL; p++) { PyObject *mod; + PyModuleDef *def; if (strcmp(name, p->name) == 0) { if (p->initfunc == NULL) { PyErr_Format(PyExc_ImportError, @@ -2181,6 +2182,9 @@ init_builtin(char *name) mod = (*p->initfunc)(); if (mod == 0) return -1; + /* Remember pointer to module init function. */ + def = PyModule_GetDef(mod); + def->m_base.m_init = p->initfunc; if (_PyImport_FixupBuiltin(mod, name) < 0) return -1; /* FixupExtension has put the module into sys.modules, |