diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst index 8750be7470b55c..99e9a193a60c06 100644 --- a/Doc/library/enum.rst +++ b/Doc/library/enum.rst @@ -811,6 +811,11 @@ Utilities and Decorators * ``THREE = [auto(), -3]`` will *not* work (``, -3`` is used to create the ``THREE`` enum member) + .. versionchanged:: 3.11.1 + + In prior versions, ``auto()`` had to be the only thing + on the assignment line to work properly. + ``_generate_next_value_`` can be overridden to customize the values used by *auto*.