summaryrefslogtreecommitdiff
path: root/Lib/abc.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-31333: Re-implement ABCMeta in C (GH-5733)Ivan Levkivskyi2018-02-181-142/+62
* bpo-32473: Improve ABCMeta._dump_registry() readability (GH-5091)yahya-abou-imran2018-01-121-1/+3
* bpo-30463: Add an empty __slots__ to abc.ABC.Aaron Hall, MBA2017-06-061-1/+1
* bpo-29581: Make ABCMeta.__new__ pass **kwargs to type.__new__ (#527)Nate2017-03-151-2/+2
* Issue #22032: __qualname__ instead of __name__ is now always used to formatSerhiy Storchaka2014-07-221-1/+1
* #16832: s/integer/object/ in docs/docstring, and add whatsnew entry.R David Murray2013-12-241-3/+3
* Fix #16832 - expose cache validity checking support in ABCMetaŁukasz Langa2013-05-251-0/+14
* Issue #16049: add abc.ABC helper class.Andrew Svetlov2012-12-131-0/+6
* improve abstract property support (closes #11610)Benjamin Peterson2011-12-151-3/+16
* Allow usage of SomeABC.register as a class decorator. Patch by Edoardo Spado...Éric Araujo2011-02-241-2/+6
* add support for abstract class and static methods #5867Benjamin Peterson2010-08-171-0/+40
* Merged revisions 77789 via svnmerge fromBenjamin Peterson2010-01-271-1/+1
* Merged revisions 72278 via svnmerge fromWalter Dörwald2009-05-041-2/+2
* Merged revisions 66144 via svnmerge fromNick Coghlan2008-09-021-2/+2
* Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,...Christian Heimes2008-02-281-46/+1
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-141-2/+13
* Moved WeakSet into a bootstap module use by abc.py.Raymond Hettinger2008-02-051-1/+1
* Copied doc for reload() from trunk's function.rst to imp.rstChristian Heimes2008-01-071-1/+1
* Backmerge -r59233:59232Christian Heimes2007-11-301-4/+1
* Fix for bug #1109Christian Heimes2007-11-301-1/+4
* #1061 (mainly by Thomas Wouters): use weak sets for abc caches.Georg Brandl2007-10-231-4/+5
* Thomas Wouters pointed out that _Abstract.__new__ should use super().__new__()Guido van Rossum2007-09-111-3/+1
* Rename __whatever variables defined by ABCMeta to _abc_whatever, so asGuido van Rossum2007-08-201-21/+21
* Fix _dump_registry() to use the correct prefix for the privateGuido van Rossum2007-08-181-2/+2
* Tests for @abstractproperty by Jeffrey Yasskin.Guido van Rossum2007-08-011-0/+2
* Add @abstractproperty.Guido van Rossum2007-08-011-0/+25
* Modernize the super() call in ABCMeta.__new__() -- I had messed withGuido van Rossum2007-06-141-1/+1
* Somehow this needed adding.Guido van Rossum2007-06-141-0/+179