]> granicus.if.org Git - python/commit
Issue #12149: Update the method cache after a type's dictionnary gets
authorAntoine Pitrou <solipsis@pitrou.net>
Tue, 12 Jul 2011 19:58:39 +0000 (21:58 +0200)
committerAntoine Pitrou <solipsis@pitrou.net>
Tue, 12 Jul 2011 19:58:39 +0000 (21:58 +0200)
commit093c8e4bf053dfe5a9b46945cca2113e80809dfc
tree10b0b6f5406dc6f603a74444191d5b4504ebb57b
parent126edb56074371c1751f19770854b2fdf3dd4706
parent84f1b1718da7fcbb8b8d255c166ef1ec0e03cd21
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.
Lib/test/test_io.py
Misc/ACKS
Misc/NEWS
Objects/typeobject.c