summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_inspect.py
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2007-11-28 08:28:28 (GMT)
committerChristian Heimes <christian@cheimes.de>2007-11-28 08:28:28 (GMT)
commitc9543e42330e5f339d6419eba6a8c5a61a39aeca (patch)
treeee3c677e808d015b6c142e1cca28337e08839818 /Lib/test/test_inspect.py
parentceee0773d262bfe876e40da927b03279ed9f8419 (diff)
downloadcpython-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.py2
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):