mirror of https://github.com/python/cpython
Added Slice and Ellipses types.
This commit is contained in:
parent
1dde7b737c
commit
8741b2b988
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue