summaryrefslogtreecommitdiff
path: root/Lib/pydoc.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2005-07-22 21:49:32 +0000
committerGeorg Brandl <georg@python.org>2005-07-22 21:49:32 +0000
commit3a228851edb65d6cca3181dc124088072d835334 (patch)
treef48a65e80c7f7596d99b89d994cf35dd8f73869d /Lib/pydoc.py
parent83328a75e819eff640f819e4658a18f7df68b220 (diff)
downloadcpython-3a228851edb65d6cca3181dc124088072d835334.tar.gz
Fix all wrong instances of "it's".
Diffstat (limited to 'Lib/pydoc.py')
-rwxr-xr-xLib/pydoc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pydoc.py b/Lib/pydoc.py
index e0add86252..50fe4a1527 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 it's data."""
+ """Check if an object is of a type that probably means its 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))