summaryrefslogtreecommitdiff
path: root/Lib/abc.py
Commit message (Expand)AuthorAgeFilesLines
* Use weakrefs to hold onto classes #2521.Benjamin Peterson2010-08-211-5/+6
* keep UserDict an old-style classBenjamin Peterson2010-06-221-1/+3
* #7624: Fix isinstance(foo(), collections.Callable) for old-style classes.Florent Xicluna2010-03-081-0/+8
* raise a clear TypeError when trying to register a non-classBenjamin Peterson2010-01-271-1/+1
* Fix typos.Walter Dörwald2009-05-041-2/+2
* Fix 3k-style metaclass syntax in docstrings.Georg Brandl2009-02-281-3/+6
* Issue 3747: Fix caching in ABCMeta.__subclasscheck__ (R: Georg Brandl)Nick Coghlan2008-09-021-2/+2
* Make isinstance(OldstyleClass, NewstyleClass) return False instead of raisingJeffrey Yasskin2008-03-171-5/+5
* Move abc._Abstract into object by adding a new flag Py_TPFLAGS_IS_ABSTRACT,Jeffrey Yasskin2008-02-281-48/+1
* Working on issue #1762: BroughtJeffrey Yasskin2008-02-131-2/+14
* Fix issue 1747: allow classic classes to be checked for being subclasses ofJeffrey Yasskin2008-01-071-1/+1
* Backport of _abccoll.py by Benjamin Arangueren, issue 1383.Guido van Rossum2007-11-221-1/+1
* Patch # 1026 by Benjamin Aranguren (with Alex Martelli):Guido van Rossum2007-09-101-0/+206