From 7e05804b57b89109f25880294e33b0753c35afdc Mon Sep 17 00:00:00 2001 From: Javad Mokhtari Date: Wed, 25 Mar 2020 11:25:11 +0430 Subject: [PATCH 1/2] issue 40045 --- Doc/reference/lexical_analysis.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/reference/lexical_analysis.rst b/Doc/reference/lexical_analysis.rst index 7e912aabbc7fb7e..09555f5785ad0d7 100644 --- a/Doc/reference/lexical_analysis.rst +++ b/Doc/reference/lexical_analysis.rst @@ -376,7 +376,7 @@ characters: information on this convention. ``__*__`` - System-defined names. These names are defined by the interpreter and its + 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 From 6d06544447bc9b3e75f0de94a6dcdf4bf38f03a3 Mon Sep 17 00:00:00 2001 From: Joannah Nanjekye <33177550+nanjekyejoannah@users.noreply.github.com> Date: Thu, 26 Mar 2020 14:16:39 -0300 Subject: [PATCH 2/2] Update lexical_analysis.rst Some minor consistent line length changes --- Doc/reference/lexical_analysis.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Doc/reference/lexical_analysis.rst b/Doc/reference/lexical_analysis.rst index 09555f5785ad0d7..3f420817eefea29 100644 --- a/Doc/reference/lexical_analysis.rst +++ b/Doc/reference/lexical_analysis.rst @@ -376,11 +376,11 @@ characters: information on this convention. ``__*__`` - 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 + 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. ``__*``