diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2013-11-30 08:53:09 (GMT) |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2013-11-30 08:53:09 (GMT) |
commit | 1a83070d9e5e6f88fb422d442ad88574db63cb93 (patch) | |
tree | 35cbcaf623ae6b58ce43726ab4b461ce4eac35a4 /Objects | |
parent | 04a684b2f2988ff1f1375c3f869f8117708ad579 (diff) | |
download | cpython-1a83070d9e5e6f88fb422d442ad88574db63cb93.zip cpython-1a83070d9e5e6f88fb422d442ad88574db63cb93.tar.gz cpython-1a83070d9e5e6f88fb422d442ad88574db63cb93.tar.bz2 |
Issue #19088: Fix incorrect caching of the copyreg module.
This fix does not cause any degradation in performance.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/typeobject.c | 37 |
1 files changed, 20 insertions, 17 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 3dcbc86..8851fae 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -7,10 +7,6 @@ #include <ctype.h> -/* Cached lookup of the copyreg module, for faster __reduce__ calls */ - -static PyObject *cached_copyreg_module = NULL; - /* Support type attribute cache */ /* The cache can keep references to the names alive for longer than @@ -73,9 +69,6 @@ void _PyType_Fini(void) { PyType_ClearCache(); - /* Need to forget our obsolete instance of the copyreg module at - * interpreter shutdown (issue #17408). */ - Py_CLEAR(cached_copyreg_module); } void @@ -3348,19 +3341,29 @@ static PyGetSetDef object_getsets[] = { static PyObject * import_copyreg(void) { - static PyObject *copyreg_str; + PyObject *copyreg_str; + PyObject *copyreg_module; + PyInterpreterState *interp = PyThreadState_GET()->interp; + _Py_IDENTIFIER(copyreg); - if (!copyreg_str) { - copyreg_str = PyUnicode_InternFromString("copyreg"); - if (copyreg_str == NULL) - return NULL; + copyreg_str = _PyUnicode_FromId(&PyId_copyreg); + if (copyreg_str == NULL) { + return NULL; } - if (!cached_copyreg_module) { - cached_copyreg_module = PyImport_Import(copyreg_str); + /* Try to fetch cached copy of copyreg from sys.modules first in an + attempt to avoid the import overhead. Previously this was implemented + by storing a reference to the cached module in a static variable, but + this broke when multiple embeded interpreters were in use (see issue + #17408 and #19088). */ + copyreg_module = PyDict_GetItemWithError(interp->modules, copyreg_str); + if (copyreg_module != NULL) { + Py_INCREF(copyreg_module); + return copyreg_module; + } + if (PyErr_Occurred()) { + return NULL; } - - Py_XINCREF(cached_copyreg_module); - return cached_copyreg_module; + return PyImport_Import(copyreg_str); } static PyObject * |