From 8e6428f21699e15b5d96f949db221f20d8466b4b Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Fri, 15 Jun 2018 21:08:22 -0700 Subject: [PATCH] bpo-33571: Improve the glossary description for '...' prompt (GH-6971) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Mention that it can be triggered by triple quotes and after specifying decorators. (cherry picked from commit 68680035143a3a6398faa88f067f244c74691d19) Co-authored-by: Andrés Delfino --- Doc/glossary.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Doc/glossary.rst b/Doc/glossary.rst index ace6419d11..8d5bd5373b 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -14,8 +14,9 @@ Glossary ``...`` The default Python prompt of the interactive shell when entering code for - an indented code block or within a pair of matching left and right - delimiters (parentheses, square brackets or curly braces). + an indented code block, when within a pair of matching left and right + delimiters (parentheses, square brackets, curly braces or triple quotes), + or after specifying a decorator. 2to3 A tool that tries to convert Python 2.x code to Python 3.x code by -- 2.40.0