summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2005-07-22 21:52:25 (GMT)
committerGeorg Brandl <georg@python.org>2005-07-22 21:52:25 (GMT)
commit9443242463104555b4802592e68a2376d049f21f (patch)
treee2e20c0fecfbb2d889bcfd0187cdad575b0e0e40 /Lib
parent7eb4b7d177adae5b5d0aefa6f54170b3967b2473 (diff)
downloadcpython-9443242463104555b4802592e68a2376d049f21f.zip
cpython-9443242463104555b4802592e68a2376d049f21f.tar.gz
cpython-9443242463104555b4802592e68a2376d049f21f.tar.bz2
That was one too much.
Diffstat (limited to 'Lib')
-rwxr-xr-xLib/pydoc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pydoc.py b/Lib/pydoc.py
index 50fe4a1..e0add86 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))