]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] Fix note in Enum.__new__ docs (GH-118284) (#118325)
authorJelle Zijlstra <jelle.zijlstra@gmail.com>
Fri, 26 Apr 2024 23:25:31 +0000 (16:25 -0700)
committerGitHub <noreply@github.com>
Fri, 26 Apr 2024 23:25:31 +0000 (16:25 -0700)
(cherry picked from commit 5a4d3df2fa02409ffd2a90cd75b67370206e9891)

Co-authored-by: Philipp A <flying-sheep@web.de>
Doc/library/enum.rst

index bc5b3d7cd4c0952952427a50707c5a9568f4b3b5..faeb94d66069f0f756392f67b66b47c2775d9cb6 100644 (file)
@@ -269,7 +269,7 @@ Data Types
          >>> Color.RED.value
          1
 
-      Value of the member, can be set in :meth:`~object.__new__`.
+      Value of the member, can be set in :meth:`~Enum.__new__`.
 
       .. note:: Enum member values
 
@@ -289,7 +289,7 @@ Data Types
 
    .. attribute:: Enum._value_
 
-      Value of the member, can be set in :meth:`~object.__new__`.
+      Value of the member, can be set in :meth:`~Enum.__new__`.
 
    .. attribute:: Enum._order_
 
@@ -397,8 +397,8 @@ Data Types
 
       results in the call ``int('1a', 16)`` and a value of ``17`` for the member.
 
-      ..note:: When writing a custom ``__new__``, do not use ``super().__new__`` --
-               call the appropriate ``__new__`` instead.
+      .. note:: When writing a custom ``__new__``, do not use ``super().__new__`` --
+                call the appropriate ``__new__`` instead.
 
    .. method:: Enum.__repr__(self)
 
@@ -817,7 +817,7 @@ Supported ``__dunder__`` names
 :attr:`~EnumType.__members__` is a read-only ordered mapping of ``member_name``:``member``
 items.  It is only available on the class.
 
-:meth:`~object.__new__`, if specified, must create and return the enum members; it is
+:meth:`~Enum.__new__`, if specified, must create and return the enum members; it is
 also a very good idea to set the member's :attr:`!_value_` appropriately.  Once
 all the members are created it is no longer used.