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 6868003514)

Co-authored-by: Andrés Delfino <adelfino@gmail.com>
This commit is contained in:
Miss Islington (bot) 2018-06-15 20:58:15 -07:00 committed by GitHub
parent bb3b365588
commit 80c51c4737
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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