diff options
author | Ethan Furman <ethan@stoneleaf.us> | 2021-10-21 03:32:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-21 03:32:11 (GMT) |
commit | 7c4d96103c4e16161e9aed9a584c9857d0674099 (patch) | |
tree | d84fc560c556b20ada84e45994b314e705d865b3 /Doc | |
parent | dd86f63b551c8c255c6d8082c02f35608d294db9 (diff) | |
download | cpython-7c4d96103c4e16161e9aed9a584c9857d0674099.zip cpython-7c4d96103c4e16161e9aed9a584c9857d0674099.tar.gz cpython-7c4d96103c4e16161e9aed9a584c9857d0674099.tar.bz2 |
bpo-44174: [Enum] add reference to name mangling (GH-29116)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/howto/enum.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/howto/enum.rst b/Doc/howto/enum.rst index 4621b66..d9cfad9 100644 --- a/Doc/howto/enum.rst +++ b/Doc/howto/enum.rst @@ -936,7 +936,8 @@ and raise an error if the two do not match:: _Private__names """"""""""""""" -Private names are not converted to enum members, but remain normal attributes. +:ref:`Private names <private-name-mangling>` are not converted to enum members, +but remain normal attributes. .. versionchanged:: 3.10 |