diff options
| author | Georg Brandl <georg@python.org> | 2005-07-22 21:52:25 +0000 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2005-07-22 21:52:25 +0000 |
| commit | 3b7185565c3afe3a8d05cbc1fffaa6f4e1ed11bc (patch) | |
| tree | 647216f497372e230979b1d2b9470729adfcfeaf | |
| parent | 3a228851edb65d6cca3181dc124088072d835334 (diff) | |
| download | cpython-3b7185565c3afe3a8d05cbc1fffaa6f4e1ed11bc.tar.gz | |
That was one too much.
| -rwxr-xr-x | Lib/pydoc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pydoc.py b/Lib/pydoc.py index 50fe4a1527..e0add86252 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)) |
