From: Guido van Rossum Date: Fri, 11 Oct 1996 16:00:06 +0000 (+0000) Subject: Added Slice and Ellipses types. X-Git-Tag: v1.4~103 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8741b2b98861d9ffcc9d4fa211d278ba62c9109e;p=thirdparty%2FPython%2Fcpython.git Added Slice and Ellipses types. --- diff --git a/Lib/types.py b/Lib/types.py index b6841735ce74..e1fbc4903a77 100644 --- a/Lib/types.py +++ b/Lib/types.py @@ -47,4 +47,7 @@ except TypeError: 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