summaryrefslogtreecommitdiff
path: root/Lib/types.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-10-11 16:25:41 +0000
committerGuido van Rossum <guido@python.org>1996-10-11 16:25:41 +0000
commitff98352d87a780df353ded0a0b92692b8383043b (patch)
tree08f66e51f30c931723098b0159d60ab38ecb8b0e /Lib/types.py
parent3a706e97038aa349edbdfb14081f1d87995dfe0f (diff)
downloadcpython-ff98352d87a780df353ded0a0b92692b8383043b.tar.gz
Ellipses -> Ellipsis rename (the dictionary really says that it should
be Ellipsis!). Bumped the API version because a linker-visible symbol is affected. Old C code will still compile -- there's a b/w compat macro. Similarly, old Python code will still run, builtin exports both Ellipses and Ellipsis.
Diffstat (limited to 'Lib/types.py')
-rw-r--r--Lib/types.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/types.py b/Lib/types.py
index e1fbc4903a..c0b3296e39 100644
--- a/Lib/types.py
+++ b/Lib/types.py
@@ -48,6 +48,6 @@ except TypeError:
FrameType = type(sys.exc_traceback.tb_frame)
SliceType = type(slice(0))
-EllipsesType = type(Ellipses)
+EllipsisType = type(Ellipsis)
del sys, _f, _C, _x # Not for export