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 e509c01 commit 61bae8dCopy full SHA for 61bae8d
CHANGES.rst
@@ -4,6 +4,9 @@ Changelog
4
4.5.0 (unreleased)
5
------------------
6
7
+- Fix the extremely rare potential for a crash when the C extensions
8
+ are in use. See `issue 21 <https://github.com/zopefoundation/Acquisition/issues/21>`_.
9
+
10
11
4.4.2 (2017-05-12)
12
src/Acquisition/_Acquisition.c
@@ -415,6 +415,7 @@ Wrapper_clear(Wrapper *self)
415
static void
416
Wrapper_dealloc(Wrapper *self)
417
{
418
+ PyObject_GC_UnTrack(OBJECT(self));
419
Wrapper_clear(self);
420
Py_TYPE(self)->tp_free(OBJECT(self));
421
}
0 commit comments