From: Finite State Machine <38001514+finite-state-machine@users.noreply.github.com> Date: Wed, 7 Feb 2024 01:28:01 +0000 (-0500) Subject: gh-115106 docs: 'enum.Flag.__iter__()' did not exist prior to Python 3.11 (GH-115107) X-Git-Tag: v3.13.0a4~125 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3f71c416c085cfaed49ef325f70eb374a4966256;p=thirdparty%2FPython%2Fcpython.git gh-115106 docs: 'enum.Flag.__iter__()' did not exist prior to Python 3.11 (GH-115107) change versionchanged to versionadded --- diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst index f31e6ea848f3..534939943d33 100644 --- a/Doc/library/enum.rst +++ b/Doc/library/enum.rst @@ -534,9 +534,7 @@ Data Types >>> list(purple) [, ] - .. versionchanged:: 3.11 - - Aliases are no longer returned during iteration. + .. versionadded:: 3.11 .. method:: __len__(self):