From 7eb4b7d177adae5b5d0aefa6f54170b3967b2473 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 22 Jul 2005 21:49:32 +0000 Subject: Fix all wrong instances of "it's". --- Lib/pydoc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/pydoc.py') 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)) -- cgit v1.2.1