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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ba20533d82e1f7578ea77f9d36530fc49583cfdd;p=python [ 683376 ] Adding NotImplementedType to types.py --- diff --git a/Lib/types.py b/Lib/types.py index fc0fbfb401..0d2905d815 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