| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-106300: Improve `assertRaises(Exception)` usages in tests (GH-106302) | Nikita Sobolev | 2023-07-07 | 1 | -2/+3 |
|
|
* | gh-98284: better error message for undefined abstractmethod (#97971) | Kaushik Kulkarni | 2022-11-05 | 1 | -6/+6 |
|
|
* | gh-91578: improved error message when trying to instantiate an abstract class... | ravi140222 | 2022-05-12 | 1 | -6/+6 |
|
|
* | bpo-43827: Make arguments to abc.ABCMeta.__new__ pos-only (#25385) | Vlad Hoi | 2022-05-05 | 1 | -0/+13 |
|
|
* | bpo-25479: add unit test for __subclasshook__ in test_abc.py (GH-24034) | Karl Dubost | 2021-05-12 | 1 | -0/+18 |
|
|
* | bpo-41905: Add abc.update_abstractmethods() (GH-22485) | Ben Avrahami | 2020-10-06 | 1 | -0/+149 |
|
|
* | bpo-40077: Convert _abc module to use PyType_FromSpec() (GH-19202) | Dong-hee Na | 2020-03-30 | 1 | -1/+1 |
|
|
* | bpo-34331: Fix incorrectly pluralized abstract class error message. (GH-8670) | Daniel Andrade | 2019-09-11 | 1 | -0/+19 |
|
|
* | bpo-34441: Fix ABC.__subclasscheck__ crash on classes with invalid __subclass... | Alexey Izbyshev | 2018-08-20 | 1 | -0/+30 |
|
|
* | bpo-32999: Fix ABC.__subclasscheck__ crash (GH-6002) | INADA Naoki | 2018-03-07 | 1 | -0/+18 |
|
|
* | bpo-31333: Re-implement ABCMeta in C (#5273) | Ivan Levkivskyi | 2018-02-18 | 1 | -387/+410 |
|
|
* | bpo-30463: Add an empty __slots__ to abc.ABC. | Aaron Hall, MBA | 2017-06-06 | 1 | -0/+3 |
|
|
* | bpo-29919: Remove unused imports found by pyflakes (#137) | Victor Stinner | 2017-03-27 | 1 | -1/+0 |
|
|
* | bpo-29581: Make ABCMeta.__new__ pass **kwargs to type.__new__ (#527) | Nate | 2017-03-15 | 1 | -0/+12 |
|
|
* | Issue #23641: Cleaned out legacy dunder names from tests and docs. | Serhiy Storchaka | 2015-03-12 | 1 | -2/+2 |
|
|
* | #18581: merge with 3.3. | Ezio Melotti | 2013-08-08 | 1 | -32/+0 |
|\ |
|
| * | #18581: remove duplicate test and run a test class that was skipped. Initial... | Ezio Melotti | 2013-08-08 | 1 | -32/+0 |
|
|
* | | Fix #16832 - expose cache validity checking support in ABCMeta | Łukasz Langa | 2013-05-25 | 1 | -0/+3 |
|
|
* | | Issue #16049: add abc.ABC helper class. | Andrew Svetlov | 2012-12-13 | 1 | -0/+13 |
|/ |
|
* | improve abstract property support (closes #11610) | Benjamin Peterson | 2011-12-15 | 1 | -10/+162 |
|
|
* | Allow usage of SomeABC.register as a class decorator. Patch by Edoardo Spado... | Éric Araujo | 2011-02-24 | 1 | -1/+23 |
|
|
* | move this test to test_descr; it's not abc specific | Benjamin Peterson | 2011-01-12 | 1 | -7/+0 |
|
|
* | #10273: Rename assertRegexpMatches and assertRaisesRegexp to assertRegex and ... | Ezio Melotti | 2010-12-01 | 1 | -2/+2 |
|
|
* | add a test and a note about metaclasses now being abcs | Benjamin Peterson | 2010-10-02 | 1 | -0/+13 |
|
|
* | type.__abstractmethods__ should raise an AttributeError #10006 | Benjamin Peterson | 2010-10-02 | 1 | -0/+7 |
|
|
* | remove test for oldstyle classes | Benjamin Peterson | 2010-08-17 | 1 | -8/+0 |
|
|
* | use assertTrue/assertFalse | Benjamin Peterson | 2010-08-17 | 1 | -24/+24 |
|
|
* | add support for abstract class and static methods #5867 | Benjamin Peterson | 2010-08-17 | 1 | -1/+39 |
|
|
* | Merged revisions 77789 via svnmerge from | Benjamin Peterson | 2010-01-27 | 1 | -0/+6 |
|
|
* | Merged revisions 77727 via svnmerge from | Ezio Melotti | 2010-01-24 | 1 | -12/+12 |
|
|
* | convert old fail* assertions to assert* | Benjamin Peterson | 2009-06-30 | 1 | -26/+26 |
|
|
* | Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to | Antoine Pitrou | 2008-08-26 | 1 | -0/+24 |
|
|
* | #2621 rename test.test_support to test.support | Benjamin Peterson | 2008-05-20 | 1 | -2/+2 |
|
|
* | Merged revisions 61203-61204 via svnmerge from | Christian Heimes | 2008-03-03 | 1 | -0/+5 |
|
|
* | Merged revisions 60990-61002 via svnmerge from | Christian Heimes | 2008-02-23 | 1 | -1/+0 |
|
|
* | Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,... | Christian Heimes | 2008-02-14 | 1 | -0/+10 |
|
|
* | Copied doc for reload() from trunk's function.rst to imp.rst | Christian Heimes | 2008-01-07 | 1 | -3/+11 |
|
|
* | Backmerge -r59233:59232 | Christian Heimes | 2007-11-30 | 1 | -7/+0 |
|
|
* | Fix for bug #1109 | Christian Heimes | 2007-11-30 | 1 | -0/+7 |
|
|
* | Patch# 1258 by Christian Heimes: kill basestring. | Guido van Rossum | 2007-10-16 | 1 | -1/+3 |
|
|
* | Thomas Wouters pointed out that _Abstract.__new__ should use super().__new__() | Guido van Rossum | 2007-09-11 | 1 | -0/+14 |
|
|
* | Tests for @abstractproperty by Jeffrey Yasskin. | Guido van Rossum | 2007-08-01 | 1 | -18/+34 |
|
|
* | Merged revisions 55817-55961 via svnmerge from | Guido van Rossum | 2007-06-13 | 1 | -0/+123 |
|
|