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

Mention that it can be triggered by triple quotes and after specifying decorators.
This commit is contained in:
Andrés Delfino 2018-06-16 00:46:38 -03:00 committed by Mariatta
parent 2707e41a5c
commit 6868003514
1 changed files with 3 additions and 2 deletions

View File

@ -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