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: StrEnum entry doesn't mention its introduction in 3.11
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.11
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ethan.furman Nosy List: Dutcho, docs@python, ethan.furman
Priority: normal Keywords: patch

Created on 2021-11-06 15:02 by Dutcho, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 29443 merged ethan.furman, 2021-11-06 16:56
Messages (3)
msg405863 - (view) Author: (Dutcho) Date: 2021-11-06 15:02
At https://docs.python.org/3.11/library/enum.html#enum.StrEnum no mention is made of 'New in version 3.11', whereas e.g. https://docs.python.org/3.11/library/enum.html#enum.EnumCheck does.

Note https://docs.python.org/3.11/library/enum.html#module-contents DOES document: 'New in version 3.11: StrEnum, EnumCheck, FlagBoundary'.
msg405869 - (view) Author: Ethan Furman (ethan.furman) * (Python committer) Date: 2021-11-06 17:16
New changeset cb755dba7a988f92a7d1cad48f3c27df18c9342d by Ethan Furman in branch 'main':
bpo-45740: [Enum] add versionadded markers to docs (GH-29443)
https://github.com/python/cpython/commit/cb755dba7a988f92a7d1cad48f3c27df18c9342d
msg405870 - (view) Author: Ethan Furman (ethan.furman) * (Python committer) Date: 2021-11-06 17:27
Thanks!
History
Date User Action Args
2022-04-11 14:59:52adminsetgithub: 89903
2021-11-06 17:27:36ethan.furmansetstatus: open -> closed
messages: + msg405870

assignee: docs@python -> ethan.furman
resolution: fixed
stage: patch review -> resolved
2021-11-06 17:16:50ethan.furmansetmessages: + msg405869
2021-11-06 16:56:20ethan.furmansetkeywords: + patch
stage: patch review
pull_requests: + pull_request27698
2021-11-06 15:07:51ethan.furmansetnosy: + ethan.furman
2021-11-06 15:02:00Dutchocreate