summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorAndrés Delfino <adelfino@gmail.com>2018-06-16 03:46:38 (GMT)
committerMariatta <Mariatta@users.noreply.github.com>2018-06-16 03:46:38 (GMT)
commit68680035143a3a6398faa88f067f244c74691d19 (patch)
tree1eeb69a300936e157e1b87781aa2ff1351d018e4 /Doc
parent2707e41a5c7ede30349cc7dbd66f8be564965d7c (diff)
downloadcpython-68680035143a3a6398faa88f067f244c74691d19.zip
cpython-68680035143a3a6398faa88f067f244c74691d19.tar.gz
cpython-68680035143a3a6398faa88f067f244c74691d19.tar.bz2
bpo-33571: Improve the glossary description for '...' prompt (GH-6971)
Mention that it can be triggered by triple quotes and after specifying decorators.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/glossary.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst
index 0f658b8..668dbb2 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