[Python-checkins] bpo-33571: Improve the glossary description for '...' prompt (GH-6971)

Miss Islington (bot) webhook-mailer at python.org
Fri Jun 15 23:58:18 EDT 2018


https://github.com/python/cpython/commit/80c51c4737c6bb51dd76d2ab6c5f7ea75bf118f2
commit: 80c51c4737c6bb51dd76d2ab6c5f7ea75bf118f2
branch: 2.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-06-15T20:58:15-07:00
summary:

bpo-33571: Improve the glossary description for '...' prompt (GH-6971)


Mention that it can be triggered by triple quotes and after specifying decorators.
(cherry picked from commit 68680035143a3a6398faa88f067f244c74691d19)

Co-authored-by: Andrés Delfino <adelfino at gmail.com>

files:
M Doc/glossary.rst

diff --git a/Doc/glossary.rst b/Doc/glossary.rst
index 4413221de781..34c71c6f3eee 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



More information about the Python-checkins mailing list