diff options
author | Tim Peters <tim.peters@gmail.com> | 2002-02-19 04:25:19 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2002-02-19 04:25:19 +0000 |
commit | bdf22026ea459f354e9fde30a208bf59443d25a7 (patch) | |
tree | 831b71a9da97028d10b9984bdc9ee60da45d521c /Lib/test | |
parent | d8c51a705a54c41b4ba48955d8be7ceab71db461 (diff) | |
download | cpython-bdf22026ea459f354e9fde30a208bf59443d25a7.tar.gz |
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')
-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 eb442002bb..ee19fa3664 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__', |