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 bea0081 commit 60e5f5eCopy full SHA for 60e5f5e
2 files changed
Misc/NEWS
@@ -24,6 +24,9 @@ Core and Builtins
24
Library
25
-------
26
27
+- Issue #4433: Fixed an access violation when garbage collecting
28
+ _ctypes.COMError instances.
29
+
30
- Issue #4429: Fixed UnicodeDecodeError in ctypes.
31
32
- Issue #4373: Corrected a potential reference leak in the pickle module and
Modules/_ctypes/_ctypes.c
@@ -5097,8 +5097,7 @@ static PyTypeObject PyComError_Type = {
5097
0, /* tp_getattro */
5098
0, /* tp_setattro */
5099
0, /* tp_as_buffer */
5100
- Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE
5101
- | Py_TPFLAGS_HAVE_GC, /* tp_flags */
+ Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */
5102
PyDoc_STR(comerror_doc), /* tp_doc */
5103
0, /* tp_traverse */
5104
0, /* tp_clear */
0 commit comments