Removed the new module

Removed a lot of types from the 'types' module that are available through builtins.
This commit is contained in:
Christian Heimes 2007-11-28 08:28:28 +00:00
parent ceee0773d2
commit c9543e4233
10 changed files with 18 additions and 198 deletions

View file

@ -364,7 +364,7 @@ class TestClassesAndFunctions(unittest.TestCase):
formatted='(*arg1, arg2=1)')
self.assertFullArgSpecEquals(mod2.annotated, ['arg1'],
ann_e={'arg1':types.ListType},
ann_e={'arg1' : list},
formatted='(arg1: list)')
def test_getargspec_method(self):