Fix all wrong instances of "it's".

This commit is contained in:
Georg Brandl 2005-07-22 21:49:32 +00:00
parent 08c02dbb85
commit 7eb4b7d177
21 changed files with 34 additions and 34 deletions

View file

@ -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))