aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/abc.py
Commit message (Expand)AuthorAge
* gh-87864: Use correct function definition syntax in the docs (#103312)Nikita Sobolev2023-04-11
* bpo-43827: Make arguments to abc.ABCMeta.__new__ pos-only (#25385)Vlad Hoi2022-05-05
* Clarify the order of a stacked `abstractmethod` (GH-26892)Ram Rachum2021-06-27
* bpo-41905: Add abc.update_abstractmethods() (GH-22485)Ben Avrahami2020-10-06
* bpo-35609: Remove examples for deprecated decorators in the abc module. (GH-1...Serhiy Storchaka2018-12-31
* bpo-31333: Re-implement ABCMeta in C (#5273)Ivan Levkivskyi2018-02-18
* bpo-32473: Improve ABCMeta._dump_registry() readability (GH-5091)yahya-abou-imran2018-01-12
* bpo-30463: Add an empty __slots__ to abc.ABC.Aaron Hall, MBA2017-06-06
* bpo-29581: Make ABCMeta.__new__ pass **kwargs to type.__new__ (#527)Nate2017-03-15
* Issue #22032: __qualname__ instead of __name__ is now always used to formatSerhiy Storchaka2014-07-22
* #16832: s/integer/object/ in docs/docstring, and add whatsnew entry.R David Murray2013-12-24
* Fix #16832 - expose cache validity checking support in ABCMetaŁukasz Langa2013-05-25
* Issue #16049: add abc.ABC helper class.Andrew Svetlov2012-12-13
* improve abstract property support (closes #11610)Benjamin Peterson2011-12-15
* Allow usage of SomeABC.register as a class decorator. Patch by Edoardo Spado...Éric Araujo2011-02-24
* add support for abstract class and static methods #5867Benjamin Peterson2010-08-17
* Merged revisions 77789 via svnmerge fromBenjamin Peterson2010-01-27
* Merged revisions 72278 via svnmerge fromWalter Dörwald2009-05-04
* Merged revisions 66144 via svnmerge fromNick Coghlan2008-09-02
* Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,...Christian Heimes2008-02-28
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-14
* Moved WeakSet into a bootstap module use by abc.py.Raymond Hettinger2008-02-05
* Copied doc for reload() from trunk's function.rst to imp.rstChristian Heimes2008-01-07
* Backmerge -r59233:59232Christian Heimes2007-11-30
* Fix for bug #1109Christian Heimes2007-11-30
* #1061 (mainly by Thomas Wouters): use weak sets for abc caches.Georg Brandl2007-10-23
* Thomas Wouters pointed out that _Abstract.__new__ should use super().__new__()Guido van Rossum2007-09-11
* Rename __whatever variables defined by ABCMeta to _abc_whatever, so asGuido van Rossum2007-08-20
* Fix _dump_registry() to use the correct prefix for the privateGuido van Rossum2007-08-18
* Tests for @abstractproperty by Jeffrey Yasskin.Guido van Rossum2007-08-01
* Add @abstractproperty.Guido van Rossum2007-08-01
* Modernize the super() call in ABCMeta.__new__() -- I had messed withGuido van Rossum2007-06-14
* Somehow this needed adding.Guido van Rossum2007-06-14