diff options
author | Guido van Rossum <guido@python.org> | 2002-06-05 19:07:39 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2002-06-05 19:07:39 +0000 |
commit | d842e07470e9371eb3bf44d02c0153b66cf2164b (patch) | |
tree | 43324c03a3dd8367dbae4cc3cff28a1d2f98e730 /Lib/test/test_pyclbr.py | |
parent | 84fca948c8e90dae94c5815d8b9ae2ff2331b676 (diff) | |
download | cpython-d842e07470e9371eb3bf44d02c0153b66cf2164b.tar.gz cpython-d842e07470e9371eb3bf44d02c0153b66cf2164b.zip |
SF bug 558179.
Change default for get() back to None.
Will backport to 2.2.1.
Diffstat (limited to 'Lib/test/test_pyclbr.py')
-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 c745720282d..0f3319f1a47 100644 --- a/Lib/test/test_pyclbr.py +++ b/Lib/test/test_pyclbr.py @@ -105,7 +105,7 @@ class PyclbrTest(unittest.TestCase): '_isfunction', '_ismodule', '_classify_class_attrs']) - self.checkModule('rfc822') + self.checkModule('rfc822', ignore=["get"]) self.checkModule('difflib') def test_others(self): |