summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael W. Hudson <mwh@python.net>2002-02-25 13:52:14 (GMT)
committerMichael W. Hudson <mwh@python.net>2002-02-25 13:52:14 (GMT)
commit858c9a1a5b3555dc8c95f009e4bc1863f34a3d14 (patch)
treeef4e4ceaeacf37789a676d7b666859c60f4e3c6d
parentc44f7f7835be82bd73e24c394cfcae0557729656 (diff)
downloadcpython-858c9a1a5b3555dc8c95f009e4bc1863f34a3d14.zip
cpython-858c9a1a5b3555dc8c95f009e4bc1863f34a3d14.tar.gz
cpython-858c9a1a5b3555dc8c95f009e4bc1863f34a3d14.tar.bz2
backport tim_one's checkin of
revision 1.11 of test_descrtut.py 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!
-rw-r--r--Lib/test/test_descrtut.py1
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__',