diff options
author | Christian Heimes <christian@cheimes.de> | 2007-11-29 16:21:13 +0000 |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2007-11-29 16:21:13 +0000 |
commit | 0db38532b304c89a998e4fc53b3ac8cd7ff23a8a (patch) | |
tree | c3cab3ea42fbf67eae746fe076fb929c0964efa3 /Lib/types.py | |
parent | 043c8f866db72ad3f0c348e5481b079bc03a9808 (diff) | |
download | cpython-git-0db38532b304c89a998e4fc53b3ac8cd7ff23a8a.tar.gz |
Removed more types from the types module
Diffstat (limited to 'Lib/types.py')
-rw-r--r-- | Lib/types.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/types.py b/Lib/types.py index 72454a123f..46a539accf 100644 --- a/Lib/types.py +++ b/Lib/types.py @@ -20,7 +20,6 @@ GeneratorType = type(_g()) class _C: def _m(self): pass -ClassType = type MethodType = type(_C()._m) BuiltinFunctionType = type(len) @@ -36,8 +35,6 @@ except TypeError: FrameType = type(tb.tb_frame) tb = None; del tb -DictProxyType = type(type.__dict__) - # Extension types defined in a C helper module. XXX There may be no # equivalent in implementations other than CPython, so it seems better to # leave them undefined then to set them to e.g. None. |