]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
That was one too much.
authorGeorg Brandl <georg@python.org>
Fri, 22 Jul 2005 21:52:33 +0000 (21:52 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 22 Jul 2005 21:52:33 +0000 (21:52 +0000)
Lib/pydoc.py

index d5c7650f5492864a3a4a6fb65306f50ebe819e42..f08af906553ee1e19c1ad55aed89853946e027ad 100755 (executable)
@@ -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))