diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-03-19 06:40:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-19 06:40:32 (GMT) |
commit | bdf6b910f9ea75609caee498a975af03b6d23f67 (patch) | |
tree | ac69902aaaeb9c2e0578181e911a36af201ea1a0 /Lib/test/test_pyclbr.py | |
parent | c85a26628ceb9624c96c3064e8b99033c026d8a3 (diff) | |
download | cpython-bdf6b910f9ea75609caee498a975af03b6d23f67.zip cpython-bdf6b910f9ea75609caee498a975af03b6d23f67.tar.gz cpython-bdf6b910f9ea75609caee498a975af03b6d23f67.tar.bz2 |
bpo-29776: Use decorator syntax for properties. (#585)
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 2cff1c5..9c216d3 100644 --- a/Lib/test/test_pyclbr.py +++ b/Lib/test/test_pyclbr.py @@ -160,7 +160,7 @@ class PyclbrTest(TestCase): cm('aifc', ignore=('openfp', '_aifc_params')) # set with = in module cm('sre_parse', ignore=('dump', 'groups', 'pos')) # from sre_constants import *; property cm('pdb') - cm('pydoc') + cm('pydoc', ignore=('input', 'output',)) # properties # Tests for modules inside packages cm('email.parser') |