summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2018-11-04 22:36:25 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-11-04 22:36:25 (GMT)
commitb4db249c9544fc4425c32feb86d610f3224ca3d8 (patch)
tree2c4b098fa67cec09924aeed8ff7f64b36c443695
parent98b85354153883b0a080f678f213729cd0764fee (diff)
downloadcpython-b4db249c9544fc4425c32feb86d610f3224ca3d8.zip
cpython-b4db249c9544fc4425c32feb86d610f3224ca3d8.tar.gz
cpython-b4db249c9544fc4425c32feb86d610f3224ca3d8.tar.bz2
bpo-9842: Add cross-reference to the ellipsis object (GH-4063)
This PR adds a cross-reference to the ellipsis object and the representation of recursive item in containers as indicated in [issue 9842](https://bugs.python.org/issue9842) by @bitdancer. https://bugs.python.org/issue9842
-rw-r--r--Doc/glossary.rst12
1 files changed, 8 insertions, 4 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst
index b8e7737..02adc0c 100644
--- a/Doc/glossary.rst
+++ b/Doc/glossary.rst
@@ -13,10 +13,14 @@ Glossary
examples which can be executed interactively in the interpreter.
``...``
- The default Python prompt of the interactive shell when entering code for
- 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.
+ Can refer to:
+
+ * The default Python prompt of the interactive shell when entering code for
+ 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.
+
+ * The :const:`Ellipsis` built-in constant.
2to3
A tool that tries to convert Python 2.x code to Python 3.x code by