diff options
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/enum.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst index b354a111a3..eb5ffd0c5d 100644 --- a/Doc/library/enum.rst +++ b/Doc/library/enum.rst @@ -1125,9 +1125,9 @@ and raise an error if the two do not match:: _Private__names """"""""""""""" -Private names will be normal attributes in Python 3.11 instead of either an error -or a member (depending on if the name ends with an underscore). Using these names -in 3.10 will issue a :exc:`DeprecationWarning`. +:ref:`Private names <private-name-mangling>` will be normal attributes in Python +3.11 instead of either an error or a member (depending on if the name ends with +an underscore). Using these names in 3.10 will issue a :exc:`DeprecationWarning`. ``Enum`` member type |