summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_subclassinit.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused imports.Serhiy Storchaka2016-12-161-1/+0
|
* Issue #28797: Modifying the class __dict__ inside the __set_name__ method ofSerhiy Storchaka2016-11-291-0/+16
| | | | | a descriptor that is used inside that class no longer prevents calling the __set_name__ method of other descriptors.
* Issue #28214: Improved exception reporting for problematic __set_name__Serhiy Storchaka2016-10-211-7/+19
| | | | attributes.
* Issue #28214: Now __set_name__ is looked up on the class instead of theSerhiy Storchaka2016-09-211-0/+12
| | | | instance.
* Issue #27366: Tweak PEP 487 documentationBerker Peksag2016-07-301-22/+22
| | | | | | * Added versionadded directives * Deleted duplicate sentence from __init_subclass__ docstring * Modernized tests
* Issue #27366: Implement PEP 487Nick Coghlan2016-07-301-0/+244
- __init_subclass__ called when new subclasses defined - __set_name__ called when descriptors are part of a class definition