]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-40045: Make "dunder" method documentation easier to locate (#19153)
authorJavad Mokhtari <javadmokhtari@outlook.com>
Fri, 27 Mar 2020 19:02:51 +0000 (23:32 +0430)
committerGitHub <noreply@github.com>
Fri, 27 Mar 2020 19:02:51 +0000 (16:02 -0300)
* issue 40045

* Update lexical_analysis.rst

Make "dunder" method documentation easier(GH-19153)

Co-authored-by: Joannah Nanjekye <33177550+nanjekyejoannah@users.noreply.github.com>
Doc/reference/lexical_analysis.rst

index 7e912aabbc7fb7ea22b1cdfb33e2d8793780236f..3f420817eefea29126356740419690057b102ab8 100644 (file)
@@ -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.
 
 ``__*``