[Python-checkins] python/dist/src/Lib pydoc.py, 1.100.2.3, 1.100.2.4

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


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

Modified Files:
      Tag: release24-maint
	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.100.2.3
retrieving revision 1.100.2.4
diff -u -d -r1.100.2.3 -r1.100.2.4
--- pydoc.py	22 Jul 2005 21:48:50 -0000	1.100.2.3
+++ pydoc.py	22 Jul 2005 21:52:33 -0000	1.100.2.4
@@ -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