From: Just van Rossum Date: Mon, 10 Feb 2003 19:38:33 +0000 (+0000) Subject: [ 683376 ] Adding NotImplementedType to types.py X-Git-Tag: v2.3c1~1925 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ba20533d82e1f7578ea77f9d36530fc49583cfdd;p=thirdparty%2FPython%2Fcpython.git [ 683376 ] Adding NotImplementedType to types.py --- diff --git a/Lib/types.py b/Lib/types.py index fc0fbfb40181..0d2905d81536 100644 --- a/Lib/types.py +++ b/Lib/types.py @@ -85,5 +85,6 @@ SliceType = slice EllipsisType = type(Ellipsis) DictProxyType = type(TypeType.__dict__) +NotImplementedType = type(NotImplemented) del sys, _f, _C, _x # Not for export