Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bpo-40045: Make "dunder" method documentation easier to locate #19153

Merged
merged 2 commits into from Mar 27, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions Doc/reference/lexical_analysis.rst
Expand Up @@ -376,11 +376,11 @@ characters:
information on this convention.

``__*__``
System-defined names. These names are defined by the interpreter and its
implementation (including the standard library). Current system names are
discussed in the :ref:`specialnames` section and elsewhere. More will likely
be defined in future versions of Python. *Any* use of ``__*__`` names, in
any context, that does not follow explicitly documented use, is subject to
System-defined names, informally known as "dunder" names. These names are
defined by the interpreter and its implementation (including the standard library).
Current system names are discussed in the :ref:`specialnames` section and elsewhere.
More will likely be defined in future versions of Python. *Any* use of ``__*__`` names,
in any context, that does not follow explicitly documented use, is subject to
breakage without warning.

``__*``
Expand Down