diff options
author | Raymond Hettinger <python@rcn.com> | 2002-12-30 07:21:32 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2002-12-30 07:21:32 (GMT) |
commit | e401b6fc55e0b2341b5e0f7dfe9bbd33c7b9f622 (patch) | |
tree | 91c2d76e05bc3b98d1fd311b5b137a64562f3a64 /Lib | |
parent | ecccafb2d4811b4f80f39ad0ce0614391665fc87 (diff) | |
download | cpython-e401b6fc55e0b2341b5e0f7dfe9bbd33c7b9f622.zip cpython-e401b6fc55e0b2341b5e0f7dfe9bbd33c7b9f622.tar.gz cpython-e401b6fc55e0b2341b5e0f7dfe9bbd33c7b9f622.tar.bz2 |
Last checkin was missing the tuple comma.
The new "substr in str" feature masked the error.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_pyclbr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_pyclbr.py b/Lib/test/test_pyclbr.py index 8e3cfa3..7a59c2e 100644 --- a/Lib/test/test_pyclbr.py +++ b/Lib/test/test_pyclbr.py @@ -143,7 +143,7 @@ class PyclbrTest(TestCase): cm = self.checkModule # These were once about the 10 longest modules - cm('random', ignore=('Random')) # from _random import Random as CoreGenerator + cm('random', ignore=('Random',)) # from _random import Random as CoreGenerator cm('cgi', ignore=('log',)) # set with = in module cm('mhlib') cm('urllib', ignore=('getproxies_registry', |