From: Georg Brandl Date: Fri, 22 Jul 2005 21:52:33 +0000 (+0000) Subject: That was one too much. X-Git-Tag: v2.4.2c1~117 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=022c6e5f924ebd2b68ec2ea4a3bb8430f18e7b6c;p=thirdparty%2FPython%2Fcpython.git That was one too much. --- diff --git a/Lib/pydoc.py b/Lib/pydoc.py index d5c7650f5492..f08af906553e 100755 --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -92,7 +92,7 @@ def classname(object, modname): return name def isdata(object): - """Check if an object is of a type that probably means its data.""" + """Check if an object is of a type that probably means it's data.""" return not (inspect.ismodule(object) or inspect.isclass(object) or inspect.isroutine(object) or inspect.isframe(object) or inspect.istraceback(object) or inspect.iscode(object))