]> granicus.if.org Git - python/commitdiff
That was one too much.
authorGeorg Brandl <georg@python.org>
Fri, 22 Jul 2005 21:52:25 +0000 (21:52 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 22 Jul 2005 21:52:25 +0000 (21:52 +0000)
Lib/pydoc.py

index 50fe4a1527669803bf3ae9eb58bdef4823d731ae..e0add862525c8a054ea1e4f0b64772bd3ae2f57f 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))