Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 652bad4 commit eb3be66Copy full SHA for eb3be66
2 files changed
Misc/NEWS
@@ -57,6 +57,10 @@ Core and Builtins
57
Library
58
-------
59
60
+- Issue #27736: Prevent segfault after interpreter re-initialization due
61
+ to ref count problem introduced in code for Issue #27038 in 3.6.0a3.
62
+ Patch by Xiang Zhang.
63
+
64
- Issue #12345: Add mathemathcal constant tau to math and cmath. See also
65
PEP 628.
66
Modules/posixmodule.c
@@ -13355,6 +13355,8 @@ INITFUNC(void)
13355
Py_DECREF(unicode);
13356
}
13357
PyModule_AddObject(m, "_have_functions", list);
13358
13359
+ Py_INCREF((PyObject *) &DirEntryType);
13360
PyModule_AddObject(m, "DirEntry", (PyObject *)&DirEntryType);
13361
13362
initialized = 1;
0 commit comments