diff options
author | Christian Heimes <christian@cheimes.de> | 2007-11-28 08:28:28 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2007-11-28 08:28:28 (GMT) |
commit | c9543e42330e5f339d6419eba6a8c5a61a39aeca (patch) | |
tree | ee3c677e808d015b6c142e1cca28337e08839818 /Lib/test/test_inspect.py | |
parent | ceee0773d262bfe876e40da927b03279ed9f8419 (diff) | |
download | cpython-c9543e42330e5f339d6419eba6a8c5a61a39aeca.zip cpython-c9543e42330e5f339d6419eba6a8c5a61a39aeca.tar.gz cpython-c9543e42330e5f339d6419eba6a8c5a61a39aeca.tar.bz2 |
Removed the new module
Removed a lot of types from the 'types' module that are available through builtins.
Diffstat (limited to 'Lib/test/test_inspect.py')
-rw-r--r-- | Lib/test/test_inspect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py index 4b78708..60a7ad1 100644 --- a/Lib/test/test_inspect.py +++ b/Lib/test/test_inspect.py @@ -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): |