commit | 8741b2b98861d9ffcc9d4fa211d278ba62c9109e | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Fri Oct 11 16:00:06 1996 +0000 |
committer | Guido van Rossum <guido@python.org> | Fri Oct 11 16:00:06 1996 +0000 |
tree | 787f4c0b46c43ae5728133888bc4cf494f566c8b | |
parent | 1dde7b737c10cb5d662a6f15866bd6e420f5c2f2 [diff] |
Added Slice and Ellipses types.
diff --git a/Lib/types.py b/Lib/types.py index b684173..e1fbc49 100644 --- a/Lib/types.py +++ b/Lib/types.py
@@ -47,4 +47,7 @@ TracebackType = type(sys.exc_traceback) FrameType = type(sys.exc_traceback.tb_frame) +SliceType = type(slice(0)) +EllipsesType = type(Ellipses) + del sys, _f, _C, _x # Not for export