This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: enum docs in 3.10: missing "New in version 3.10"
Type: Stage: resolved
Components: Documentation Versions: Python 3.10
process
Status: closed Resolution:
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Akuli, barry, docs@python, eli.bendersky, ethan.furman, kj
Priority: normal Keywords:

Created on 2021-05-03 17:01 by Akuli, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Messages (3)
msg392824 - (view) Author: Akuli (Akuli) Date: 2021-05-03 17:01
https://docs.python.org/3.10/library/enum.html says "New in version 3.10: StrEnum". That's true, but these are also new in 3.10:
- property (I mean enum.property, not the built-in property)
- global_enum
- FlagBoundary
- StrEnum
- EnumType  (does this even exist? I compiled the latest python today and I don't have this)
msg392836 - (view) Author: Ethan Furman (ethan.furman) * (Python committer) Date: 2021-05-03 19:37
EnumMeta has been renamed to EnumType, but has been kept as an alias.
msg398289 - (view) Author: Ken Jin (kj) * (Python committer) Date: 2021-07-27 10:16
I think we can close this. The current docs show the version added for the items in OP's list https://docs.python.org/3.11/library/enum.html.

Their versionadded should be 3.11 now, but that's a separate issue with a PR at GH-27388.
History
Date User Action Args
2022-04-11 14:59:45adminsetgithub: 88187
2021-07-27 14:21:39Akulisetstatus: open -> closed
stage: resolved
2021-07-27 10:16:14kjsetnosy: + kj
messages: + msg398289
2021-05-03 19:37:31ethan.furmansetmessages: + msg392836
2021-05-03 18:22:41xtreaksetnosy: + barry, eli.bendersky, ethan.furman
2021-05-03 17:01:50Akulicreate