diff options
author | Just van Rossum <just@letterror.com> | 2003-02-10 19:38:33 (GMT) |
---|---|---|
committer | Just van Rossum <just@letterror.com> | 2003-02-10 19:38:33 (GMT) |
commit | ba20533d82e1f7578ea77f9d36530fc49583cfdd (patch) | |
tree | 0ce03855547b444d1ca8b17c4497e1d1be62c56a | |
parent | f163d10fbe5d90aace7325400c3d597ed6c9e62a (diff) | |
download | cpython-ba20533d82e1f7578ea77f9d36530fc49583cfdd.zip cpython-ba20533d82e1f7578ea77f9d36530fc49583cfdd.tar.gz cpython-ba20533d82e1f7578ea77f9d36530fc49583cfdd.tar.bz2 |
[ 683376 ] Adding NotImplementedType to types.py
-rw-r--r-- | Lib/types.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/types.py b/Lib/types.py index fc0fbfb..0d2905d 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 |