diff options
author | Tim Peters <tim.peters@gmail.com> | 2002-02-19 04:25:19 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2002-02-19 04:25:19 (GMT) |
commit | 8044055d822a3030c48ccc40aec8b66da24b6124 (patch) | |
tree | 99eb61e9b6aaa10db43d4e1be11d14808437d6c4 /Lib/test/test_descrtut.py | |
parent | 45bec8c7fc4c7a27a540814419b1bca052ecc3b2 (diff) | |
download | cpython-8044055d822a3030c48ccc40aec8b66da24b6124.zip cpython-8044055d822a3030c48ccc40aec8b66da24b6124.tar.gz cpython-8044055d822a3030c48ccc40aec8b66da24b6124.tar.bz2 |
Somebody made list.__dict__ grow a '__doc__' key, but apparently didn't
run the test suite afterwards. Either that, or whether '__doc__' shows
up is platform-dependent!
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 eb44200..ee19fa3 100644 --- a/Lib/test/test_descrtut.py +++ b/Lib/test/test_descrtut.py @@ -191,6 +191,7 @@ Instead, you can get the same information from the list type: '__delattr__', '__delitem__', '__delslice__', + '__doc__', '__eq__', '__ge__', '__getattribute__', |