[issue3747] Fix caching in ABCMeta.__subclasscheck__

2008-09-02 Thread Nick Coghlan
Nick Coghlan <[EMAIL PROTECTED]> added the comment: 2.6 fixed in r66144, merged to 3.0 in r66147 -- status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue3747] Fix caching in ABCMeta.__subclasscheck__

2008-09-01 Thread Andrew McNamara
Changes by Andrew McNamara <[EMAIL PROTECTED]>: -- nosy: +andrewmcnamara ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list

[issue3747] Fix caching in ABCMeta.__subclasscheck__

2008-09-01 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Looks good. -- nosy: +georg.brandl resolution: -> accepted ___ Python tracker <[EMAIL PROTECTED]> ___ _

[issue3747] Fix caching in ABCMeta.__subclasscheck__

2008-09-01 Thread Nick Coghlan
Changes by Nick Coghlan <[EMAIL PROTECTED]>: -- priority: critical -> release blocker ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Pyt

[issue3747] Fix caching in ABCMeta.__subclasscheck__

2008-09-01 Thread Nick Coghlan
New submission from Nick Coghlan <[EMAIL PROTECTED]>: Two of the return paths from ABCMeta.__subclasscheck__ store the subclass being checked in _abc_registry instead of _abc_cache. The attached patch corrects the issue. -- files: meta_subclass_fix.diff keywords: needs review, patch, pa