[issue42517] Enum: do not convert private names into members

2021-10-20 Thread Ethan Furman
Ethan Furman added the comment: New changeset 9733c9651afad84ab2f010e9e68b7c03976ea9f3 by Ethan Furman in branch '3.9': [3.9] bpo-42517: [ENUM] update docs for changes coming in 3.11 (GH-29113) https://github.com/python/cpython/commit/9733c9651afad84ab2f010e9e68b7c03976ea9f3 --

[issue42517] Enum: do not convert private names into members

2021-10-20 Thread Ethan Furman
Change by Ethan Furman : -- pull_requests: +27380 pull_request: https://github.com/python/cpython/pull/29113 ___ Python tracker ___

[issue42517] Enum: do not convert private names into members

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

[issue42517] Enum: do not convert private names into members

2020-12-14 Thread Ethan Furman
Ethan Furman added the comment: New changeset aba12b67c18b17bb727a0d50dd0653e38cb64dc8 by Miss Islington (bot) in branch '3.9': [3.9] bpo-42517: [Enum] deprecate private name members (GH-23722) (GH-23748) https://github.com/python/cpython/commit/aba12b67c18b17bb727a0d50dd0653e38cb64dc8

[issue42517] Enum: do not convert private names into members

2020-12-12 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +22606 pull_request: https://github.com/python/cpython/pull/23748 ___ Python tracker

[issue42517] Enum: do not convert private names into members

2020-12-09 Thread Ethan Furman
Ethan Furman added the comment: New changeset 7cf0aad96d1d20f07d7f0e374885f327c2d5ff27 by Ethan Furman in branch 'master': bpo-42517: [Enum] do not convert private names into members (GH-23722) https://github.com/python/cpython/commit/7cf0aad96d1d20f07d7f0e374885f327c2d5ff27 --

[issue42517] Enum: do not convert private names into members

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

[issue42517] Enum: do not convert private names into members

2020-12-09 Thread Ethan Furman
Ethan Furman added the comment: Make that deprecate in 3.9, work correctly in 3.10. -- ___ Python tracker ___ ___ Python-bugs-list

[issue42517] Enum: do not convert private names into members

2020-11-30 Thread Ethan Furman
New submission from Ethan Furman : Currently, private names such as '__location' will get both name mangled and converted into an attribute, while `__location_` will get mangled, but not converted as the final name is sundered (e.g. `_MyEnum__location_`). Just in case anyone is actually