]> granicus.if.org Git - python/commitdiff
Issue #12149: Update the method cache after a type's dictionnary gets
authorAntoine Pitrou <solipsis@pitrou.net>
Tue, 12 Jul 2011 19:57:15 +0000 (21:57 +0200)
committerAntoine Pitrou <solipsis@pitrou.net>
Tue, 12 Jul 2011 19:57:15 +0000 (21:57 +0200)
cleared by the garbage collector.  This fixes a segfault when an instance
and its type get caught in a reference cycle, and the instance's
deallocator calls one of the methods on the type (e.g. when subclassing
IOBase).

Diagnosis and patch by Davide Rizzo.

Lib/test/test_io.py
Misc/ACKS
Misc/NEWS
Objects/typeobject.c

index cfd4583cb20c74b7bb096017a6a6ead9fac077e6..39fda2beea109e8045c2e8af44b6b5ac10a5a110 100644 (file)
@@ -611,7 +611,24 @@ class IOTest(unittest.TestCase):
         self.assertEqual(rawio.read(2), b"")
 
 class CIOTest(IOTest):
-    pass
+
+    def test_IOBase_finalize(self):
+        # Issue #12149: segmentation fault on _PyIOBase_finalize when both a
+        # class which inherits IOBase and an object of this class are caught
+        # in a reference cycle and close() is already in the method cache.
+        class MyIO(self.IOBase):
+            def close(self):
+                pass
+
+        # create an instance to populate the method cache
+        MyIO()
+        obj = MyIO()
+        obj.obj = obj
+        wr = weakref.ref(obj)
+        del MyIO
+        del obj
+        support.gc_collect()
+        self.assertTrue(wr() is None, wr)
 
 class PyIOTest(IOTest):
     pass
index 45b4042fa9a93f10dd74f1a4d5e30c34e5834def..625317d50a04412d70d9ba2ff241632589467c46 100644 (file)
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -736,6 +736,7 @@ Armin Rigo
 Nicholas Riley
 Jean-Claude Rimbault
 Juan M. Bello Rivas
+Davide Rizzo
 Anthony Roach
 Mark Roberts
 Jim Robinson
index 9a46b72742a6f31c9e6ab1d5e71c2d46de4d8628..3df8e953870feb403120855ec3249e47ebc9cc02 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,12 @@ What's New in Python 3.2.2?
 Core and Builtins
 -----------------
 
+- Issue #12149: Update the method cache after a type's dictionnary gets
+  cleared by the garbage collector.  This fixes a segfault when an instance
+  and its type get caught in a reference cycle, and the instance's
+  deallocator calls one of the methods on the type (e.g. when subclassing
+  IOBase).  Diagnosis and patch by Davide Rizzo.
+
 - Issue #9611, #9015: FileIO.read() clamps the length to INT_MAX on Windows.
 
 - When a generator yields, do not retain the caller's exception state on the
index 3c724fd7c6757dc71da793d73ffba231f3abbea1..97ccf0118e78e27c97c72a35d479c5b2982f1138 100644 (file)
@@ -967,6 +967,8 @@ subtype_dealloc(PyObject *self)
     assert(basedealloc);
     basedealloc(self);
 
+    PyType_Modified(type);
+
     /* Can't reference self beyond this point */
     Py_DECREF(type);