[issue42567] Enum: manually call __init_subclass__ after members are added

2020-12-14 Thread Ethan Furman
Change by Ethan Furman : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue42567] Enum: manually call __init_subclass__ after members are added

2020-12-14 Thread Ethan Furman
Ethan Furman added the comment: New changeset 9d1fff1fcd5332f0ba7f72d0e0f9f66b47ec4e8d by Ethan Furman in branch '3.9': [3.9] bpo-42567: [Enum] call __init_subclass__ after members are added (GH-23714) (GH-23772) https://github.com/python/cpython/commit/9d1fff1fcd5332f0ba7f72d0e0f9f66b47ec4e

[issue42567] Enum: manually call __init_subclass__ after members are added

2020-12-14 Thread Ethan Furman
Change by Ethan Furman : -- pull_requests: +22628 stage: backport needed -> patch review pull_request: https://github.com/python/cpython/pull/23772 ___ Python tracker ___ _

[issue42567] Enum: manually call __init_subclass__ after members are added

2020-12-09 Thread Ethan Furman
Change by Ethan Furman : -- stage: patch review -> backport needed versions: +Python 3.9 ___ Python tracker ___ ___ Python-bugs-list

[issue42567] Enum: manually call __init_subclass__ after members are added

2020-12-09 Thread Ethan Furman
Ethan Furman added the comment: New changeset 6bd94de168b58ac9358277ed6f200490ab26c174 by Ethan Furman in branch 'master': bpo-42567: [Enum] call __init_subclass__ after members are added (GH-23714) https://github.com/python/cpython/commit/6bd94de168b58ac9358277ed6f200490ab26c174 --

[issue42567] Enum: manually call __init_subclass__ after members are added

2020-12-08 Thread Ethan Furman
Change by Ethan Furman : -- keywords: +patch pull_requests: +22576 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/23714 ___ Python tracker

[issue42567] Enum: manually call __init_subclass__ after members are added

2020-12-04 Thread Ethan Furman
New submission from Ethan Furman : __init_subclass__ is being automatically called when the initial Enum is created, but before the members have been added, greatly reducing that method's usefulness. -- assignee: ethan.furman components: Library (Lib) messages: 382489 nosy: ethan.furm