Commit 874d65af authored by Antoine Pitrou's avatar Antoine Pitrou

Issue #11321: Fix a crash with multiple imports of the _pickle module when

embedding Python.  Patch by Andreas Stührk.
parents 8f629059 8391cf4e
......@@ -225,6 +225,9 @@ Core and Builtins
Library
-------
- Issue #11321: Fix a crash with multiple imports of the _pickle module when
embedding Python. Patch by Andreas Stührk.
- Issue #6755: Add get_wch() method to curses.window class. Patch by Iñigo
Serna.
......
......@@ -6338,8 +6338,10 @@ PyInit__pickle(void)
if (m == NULL)
return NULL;
Py_INCREF(&Pickler_Type);
if (PyModule_AddObject(m, "Pickler", (PyObject *)&Pickler_Type) < 0)
return NULL;
Py_INCREF(&Unpickler_Type);
if (PyModule_AddObject(m, "Unpickler", (PyObject *)&Unpickler_Type) < 0)
return NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment