summaryrefslogtreecommitdiff
path: root/Lib/types.py
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2007-11-29 16:21:13 +0000
committerChristian Heimes <christian@cheimes.de>2007-11-29 16:21:13 +0000
commit0db38532b304c89a998e4fc53b3ac8cd7ff23a8a (patch)
treec3cab3ea42fbf67eae746fe076fb929c0964efa3 /Lib/types.py
parent043c8f866db72ad3f0c348e5481b079bc03a9808 (diff)
downloadcpython-git-0db38532b304c89a998e4fc53b3ac8cd7ff23a8a.tar.gz
Removed more types from the types module
Diffstat (limited to 'Lib/types.py')
-rw-r--r--Lib/types.py3
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.