[issue8268] Make old-style classes weak referenceable

2010-03-31 Thread Antoine Pitrou
Antoine Pitrou added the comment: Fixed in r79535. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ __

[issue8268] Make old-style classes weak referenceable

2010-03-30 Thread Antoine Pitrou
Changes by Antoine Pitrou : Added file: http://bugs.python.org/file16702/weakref-classobj.patch ___ Python tracker ___ ___ Python-bugs-list mai

[issue8268] Make old-style classes weak referenceable

2010-03-30 Thread Antoine Pitrou
Changes by Antoine Pitrou : Removed file: http://bugs.python.org/file16701/weakref-classobj.patch ___ Python tracker ___ ___ Python-bugs-list m

[issue8268] Make old-style classes weak referenceable

2010-03-30 Thread Antoine Pitrou
Antoine Pitrou added the comment: Here is a patch. -- keywords: +patch nosy: +amaury.forgeotdarc stage: needs patch -> patch review Added file: http://bugs.python.org/file16701/weakref-classobj.patch ___ Python tracker

[issue8268] Make old-style classes weak referenceable

2010-03-30 Thread Antoine Pitrou
New submission from Antoine Pitrou : New-style classes are weak referenceable, but old-style classes are not. For a proper implementation of ABC caches without any memory leaks (see issue2521), this limitation should be raised. -- components: Interpreter Core messages: 101957 nosy: pitr