]> granicus.if.org Git - python/commitdiff
bpo-33571: Improve the glossary description for '...' prompt (GH-6971)
authorAndrés Delfino <adelfino@gmail.com>
Sat, 16 Jun 2018 03:46:38 +0000 (00:46 -0300)
committerMariatta <Mariatta@users.noreply.github.com>
Sat, 16 Jun 2018 03:46:38 +0000 (20:46 -0700)
Mention that it can be triggered by triple quotes and after specifying decorators.

Doc/glossary.rst

index 0f658b8c7e7619e0f92676d8022449284bb263c0..668dbb2a7ce92153195030b9efae97224521d97a 100644 (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