[Python-checkins] python/dist/src/Lib SimpleXMLRPCServer.py, 1.9.2.1, 1.9.2.2 tarfile.py, 1.21.2.1, 1.21.2.2 ConfigParser.py, 1.68, 1.68.2.1 difflib.py, 1.28, 1.28.2.1 pydoc.py, 1.100.2.2, 1.100.2.3

birkenfeld@users.sourceforge.net birkenfeld at users.sourceforge.net
Fri Jul 22 23:48:53 CEST 2005


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

Modified Files:
      Tag: release24-maint
	SimpleXMLRPCServer.py tarfile.py ConfigParser.py difflib.py 
	pydoc.py 
Log Message:
Fix all wrong instances of "it's".



Index: SimpleXMLRPCServer.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/SimpleXMLRPCServer.py,v
retrieving revision 1.9.2.1
retrieving revision 1.9.2.2
diff -u -d -r1.9.2.1 -r1.9.2.2
--- SimpleXMLRPCServer.py	3 Feb 2005 15:00:18 -0000	1.9.2.1
+++ SimpleXMLRPCServer.py	22 Jul 2005 21:48:49 -0000	1.9.2.2
@@ -170,7 +170,7 @@
 
         If the registered instance has a _dispatch method then that
         method will be called with the name of the XML-RPC method and
-        it's parameters as a tuple
+        its parameters as a tuple
         e.g. instance._dispatch('add',(2,3))
 
         If the registered instance does not have a _dispatch method
@@ -371,7 +371,7 @@
 
         If the registered instance has a _dispatch method then that
         method will be called with the name of the XML-RPC method and
-        it's parameters as a tuple
+        its parameters as a tuple
         e.g. instance._dispatch('add',(2,3))
 
         If the registered instance does not have a _dispatch method

Index: tarfile.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/tarfile.py,v
retrieving revision 1.21.2.1
retrieving revision 1.21.2.2
diff -u -d -r1.21.2.1 -r1.21.2.2
--- tarfile.py	3 Mar 2005 23:15:03 -0000	1.21.2.1
+++ tarfile.py	22 Jul 2005 21:48:50 -0000	1.21.2.2
@@ -1374,7 +1374,7 @@
                 # stream of tar blocks.
                 raise StreamError, "cannot extract (sym)link as file object"
             else:
-                # A (sym)link's file object is it's target's file object.
+                # A (sym)link's file object is its target's file object.
                 return self.extractfile(self._getmember(tarinfo.linkname,
                                                         tarinfo))
         else:

Index: ConfigParser.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/ConfigParser.py,v
retrieving revision 1.68
retrieving revision 1.68.2.1
diff -u -d -r1.68 -r1.68.2.1
--- ConfigParser.py	3 Oct 2004 15:55:09 -0000	1.68
+++ ConfigParser.py	22 Jul 2005 21:48:50 -0000	1.68.2.1
@@ -28,7 +28,7 @@
         create the parser and specify a dictionary of intrinsic defaults.  The
         keys must be strings, the values must be appropriate for %()s string
         interpolation.  Note that `__name__' is always an intrinsic default;
-        it's value is the section's name.
+        its value is the section's name.
 
     sections()
         return all the configuration section names, sans DEFAULT

Index: difflib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/difflib.py,v
retrieving revision 1.28
retrieving revision 1.28.2.1
diff -u -d -r1.28 -r1.28.2.1
--- difflib.py	12 Nov 2004 16:12:15 -0000	1.28
+++ difflib.py	22 Jul 2005 21:48:50 -0000	1.28.2.1
@@ -1371,7 +1371,7 @@
                 text = ' '
             # insert marks that won't be noticed by an xml/html escaper.
             text = '\0' + format_key + text + '\1'
-        # Return line of text, first allow user's line formatter to do it's
+        # Return line of text, first allow user's line formatter to do its
         # thing (such as adding the line number) then replace the special
         # marks with what the user's change markup.
         return (num_lines[side],text)
@@ -1472,7 +1472,7 @@
         """Yields from/to lines of text with a change indication.
 
         This function is an iterator.  It itself pulls lines from the line
-        iterator.  It's difference from that iterator is that this function
+        iterator.  Its difference from that iterator is that this function
         always yields a pair of from/to text lines (with the change
         indication).  If necessary it will collect single from/to lines
         until it has a matching pair from/to pair to yield.

Index: pydoc.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/pydoc.py,v
retrieving revision 1.100.2.2
retrieving revision 1.100.2.3
diff -u -d -r1.100.2.2 -r1.100.2.3
--- pydoc.py	19 Feb 2005 22:57:37 -0000	1.100.2.2
+++ pydoc.py	22 Jul 2005 21:48:50 -0000	1.100.2.3
@@ -92,7 +92,7 @@
     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))



More information about the Python-checkins mailing list