From: Tim Peters Date: Thu, 4 Oct 2001 05:48:13 +0000 (+0000) Subject: class_docstrings(): The new-style class tests should use new-style X-Git-Tag: v2.2.1c1~1472 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4fb1fe8bd20d0d3cfe15d4dcfa520b14c863f10a;p=thirdparty%2FPython%2Fcpython.git class_docstrings(): The new-style class tests should use new-style classes (sheesh!). --- diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index cd65c2c963fc..a6d527ec1060 100644 --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -98,24 +98,24 @@ def class_docstrings(): pass verify(Classic2.__doc__ is None) - class NewStatic: + class NewStatic(object): "Another docstring." __dynamic__ = 0 verify(NewStatic.__doc__ == "Another docstring.") verify(NewStatic.__dict__['__doc__'] == "Another docstring.") - class NewStatic2: + class NewStatic2(object): __dynamic__ = 0 pass verify(NewStatic2.__doc__ is None) - class NewDynamic: + class NewDynamic(object): "Another docstring." __dynamic__ = 1 verify(NewDynamic.__doc__ == "Another docstring.") verify(NewDynamic.__dict__['__doc__'] == "Another docstring.") - class NewDynamic2: + class NewDynamic2(object): __dynamic__ = 1 pass verify(NewDynamic2.__doc__ is None)