[Python-checkins] python/dist/src/Lib pydoc.py,1.105,1.106

birkenfeld@users.sourceforge.net birkenfeld at users.sourceforge.net
Fri Jul 22 23:52:27 CEST 2005


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23002/Lib

Modified Files:
	pydoc.py 
Log Message:
That was one too much.



Index: pydoc.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/pydoc.py,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -d -r1.105 -r1.106
--- pydoc.py	22 Jul 2005 21:49:29 -0000	1.105
+++ pydoc.py	22 Jul 2005 21:52:25 -0000	1.106
@@ -92,7 +92,7 @@
     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))



More information about the Python-checkins mailing list