diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-05-24 16:09:06 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-05-24 16:09:06 (GMT) |
commit | 82b00c1d307f7fb39f388760b9ccd519fe3ef63b (patch) | |
tree | f164c4074f1093713a372ef6066fca576f68c935 /Lib/test/test_descrtut.py | |
parent | 9bcfacd4fcf64ee7f6e0d05b5d0894c10cd43fc0 (diff) | |
download | cpython-82b00c1d307f7fb39f388760b9ccd519fe3ef63b.zip cpython-82b00c1d307f7fb39f388760b9ccd519fe3ef63b.tar.gz cpython-82b00c1d307f7fb39f388760b9ccd519fe3ef63b.tar.bz2 |
move specialized dir implementations into __dir__ methods (closes #12166)
Diffstat (limited to 'Lib/test/test_descrtut.py')
-rw-r--r-- | Lib/test/test_descrtut.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_descrtut.py b/Lib/test/test_descrtut.py index c3355b9..f495e18 100644 --- a/Lib/test/test_descrtut.py +++ b/Lib/test/test_descrtut.py @@ -170,6 +170,7 @@ You can get the information from the list type: '__contains__', '__delattr__', '__delitem__', + '__dir__', '__doc__', '__eq__', '__format__', |