[Python-checkins] python/dist/src/Lib/test test_cd.py, 1.6, 1.6.20.1 test_al.py, 1.7, 1.7.20.1 test_cl.py, 1.6, 1.6.20.1 test_unicodedata.py, 1.11, 1.11.2.1 test_minidom.py, 1.39, 1.39.4.1

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


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

Modified Files:
      Tag: release24-maint
	test_cd.py test_al.py test_cl.py test_unicodedata.py 
	test_minidom.py 
Log Message:
Fix all wrong instances of "it's".



Index: test_cd.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_cd.py,v
retrieving revision 1.6
retrieving revision 1.6.20.1
diff -u -d -r1.6 -r1.6.20.1
--- test_cd.py	30 Jul 2002 23:26:01 -0000	1.6
+++ test_cd.py	22 Jul 2005 21:48:49 -0000	1.6.20.1
@@ -10,7 +10,7 @@
            'ident', 'index', 'msftoframe', 'open', 'pnum', 'ptime']
 
 
-# This is a very inobtrusive test for the existence of the cd module and all it's
+# This is a very inobtrusive test for the existence of the cd module and all its
 # attributes.  More comprehensive examples can be found in Demo/cd and
 # require that you have a CD and a CD ROM drive
 

Index: test_al.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_al.py,v
retrieving revision 1.7
retrieving revision 1.7.20.1
diff -u -d -r1.7 -r1.7.20.1
--- test_al.py	30 Jul 2002 23:26:00 -0000	1.7
+++ test_al.py	22 Jul 2005 21:48:49 -0000	1.7.20.1
@@ -8,7 +8,7 @@
 alattrs = ['__doc__', '__name__', 'getdefault', 'getminmax', 'getname', 'getparams',
            'newconfig', 'openport', 'queryparams', 'setparams']
 
-# This is a very unobtrusive test for the existence of the al module and all it's
+# This is a very unobtrusive test for the existence of the al module and all its
 # attributes.  More comprehensive examples can be found in Demo/al
 
 def main():

Index: test_cl.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_cl.py,v
retrieving revision 1.6
retrieving revision 1.6.20.1
diff -u -d -r1.6 -r1.6.20.1
--- test_cl.py	30 Jul 2002 23:26:01 -0000	1.6
+++ test_cl.py	22 Jul 2005 21:48:49 -0000	1.6.20.1
@@ -64,7 +64,7 @@
 
 
 # This is a very inobtrusive test for the existence of the cl
-# module and all it's attributes.
+# module and all its attributes.
 
 def main():
     # touch all the attributes of al without doing anything

Index: test_unicodedata.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_unicodedata.py,v
retrieving revision 1.11
retrieving revision 1.11.2.1
diff -u -d -r1.11 -r1.11.2.1
--- test_unicodedata.py	4 Aug 2004 07:38:33 -0000	1.11
+++ test_unicodedata.py	22 Jul 2005 21:48:49 -0000	1.11.2.1
@@ -191,7 +191,7 @@
     def test_decimal_numeric_consistent(self):
         # Test that decimal and numeric are consistent,
         # i.e. if a character has a decimal value,
-        # it's numeric value should be the same.
+        # its numeric value should be the same.
         count = 0
         for i in xrange(0x10000):
             c = unichr(i)
@@ -204,7 +204,7 @@
     def test_digit_numeric_consistent(self):
         # Test that digit and numeric are consistent,
         # i.e. if a character has a digit value,
-        # it's numeric value should be the same.
+        # its numeric value should be the same.
         count = 0
         for i in xrange(0x10000):
             c = unichr(i)

Index: test_minidom.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_minidom.py,v
retrieving revision 1.39
retrieving revision 1.39.4.1
diff -u -d -r1.39 -r1.39.4.1
--- test_minidom.py	12 Feb 2004 17:35:11 -0000	1.39
+++ test_minidom.py	22 Jul 2005 21:48:49 -0000	1.39.4.1
@@ -1199,7 +1199,7 @@
             and not a1.isId
             and a2.isId
             and not a3.isId)
-    # renaming an attribute should not affect it's ID-ness:
+    # renaming an attribute should not affect its ID-ness:
     doc.renameNode(a2, xml.dom.EMPTY_NAMESPACE, "an")
     confirm(e.isSameNode(doc.getElementById("w"))
             and a2.isId)
@@ -1235,7 +1235,7 @@
     confirm(a2.isId)
     confirm(not a3.isId)
     confirm(doc.getElementById("v") is None)
-    # renaming an attribute should not affect it's ID-ness:
+    # renaming an attribute should not affect its ID-ness:
     doc.renameNode(a2, xml.dom.EMPTY_NAMESPACE, "an")
     confirm(e.isSameNode(doc.getElementById("w"))
             and a2.isId)
@@ -1271,7 +1271,7 @@
     confirm(a2.isId)
     confirm(not a3.isId)
     confirm(doc.getElementById("v") is None)
-    # renaming an attribute should not affect it's ID-ness:
+    # renaming an attribute should not affect its ID-ness:
     doc.renameNode(a2, xml.dom.EMPTY_NAMESPACE, "an")
     confirm(e.isSameNode(doc.getElementById("w"))
             and a2.isId)



More information about the Python-checkins mailing list