Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix misleading mentions of tp_size in comments (GH-9093) | Peter Eisentraut | 2018-09-10 | 1 | -1/+1 |
| | | | | Many type object initializations labeled a field "tp_size" in the comment, but the name of that field is tp_basicsize. | ||||
* | bpo-34441: Fix ABC.__subclasscheck__ crash on classes with invalid ↵ | Alexey Izbyshev | 2018-08-20 | 1 | -0/+3 |
| | | | | | | __subclasses__ (GH-8835) The missing NULL check was reported by Svace static analyzer. | ||||
* | bpo-32999: ast: Convert useless check to assert (GH-6197) | INADA Naoki | 2018-03-23 | 1 | -3/+1 |
| | |||||
* | bpo-32999: Revert GH-6002 (fc7df0e6) (GH-6189) | INADA Naoki | 2018-03-22 | 1 | -24/+11 |
| | | | | bpo-33018 (GH-5944) fixed bpo-32999 too. So fc7df0e6 is not required anymore. Revert it except test case. | ||||
* | bpo-33018: Improve issubclass() error checking and message. (GH-5944) | jab | 2018-03-22 | 1 | -0/+5 |
| | | | | | This improves error message for situations when a non-class is checked w.r.t. an abstract base class. | ||||
* | bpo-32999: Fix ABC.__subclasscheck__ crash (GH-6002) | INADA Naoki | 2018-03-07 | 1 | -12/+25 |
| | |||||
* | bpo-31333: Re-implement ABCMeta in C (#5273) | Ivan Levkivskyi | 2018-02-18 | 1 | -0/+822 |
This adds C versions of methods used by ABCMeta that improve performance of various ABC operations. |