diff options
author | Guido van Rossum <guido@python.org> | 1996-10-11 16:25:41 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-10-11 16:25:41 (GMT) |
commit | e449af7da940d353a54036fb72e7405d2da362e3 (patch) | |
tree | 006a8ff9abc9d4639bf098ce59794dae9c7adf61 /Lib | |
parent | 8741b2b98861d9ffcc9d4fa211d278ba62c9109e (diff) | |
download | cpython-e449af7da940d353a54036fb72e7405d2da362e3.zip cpython-e449af7da940d353a54036fb72e7405d2da362e3.tar.gz cpython-e449af7da940d353a54036fb72e7405d2da362e3.tar.bz2 |
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')
-rw-r--r-- | Lib/types.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/types.py b/Lib/types.py index e1fbc49..c0b3296 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 |