[Python-checkins] r45616 - peps/trunk/pep-0319.txt peps/trunk/pep-0341.txt peps/trunk/pep-0342.txt

george.yoshida python-checkins at python.org
Fri Apr 21 17:22:46 CEST 2006


Author: george.yoshida
Date: Fri Apr 21 17:22:45 2006
New Revision: 45616

Modified:
   peps/trunk/pep-0319.txt
   peps/trunk/pep-0341.txt
   peps/trunk/pep-0342.txt
Log:
typo fixes


Modified: peps/trunk/pep-0319.txt
==============================================================================
--- peps/trunk/pep-0319.txt	(original)
+++ peps/trunk/pep-0319.txt	Fri Apr 21 17:22:45 2006
@@ -416,7 +416,7 @@
         with my_transaction:
             do_in_transaction()
 
-        # when the block terminates, the transaction is commited.
+        # when the block terminates, the transaction is committed.
 
     The 'synchronize' and 'asynchronize' keywords cannot serve this or
     any other general acquire/release pattern other than thread

Modified: peps/trunk/pep-0341.txt
==============================================================================
--- peps/trunk/pep-0341.txt	(original)
+++ peps/trunk/pep-0341.txt	Fri Apr 21 17:22:45 2006
@@ -38,7 +38,7 @@
                 f = open(filename)
                 text = f.read()
             except IOError:
-                print 'An error occured'
+                print 'An error occurred'
         finally:
             if f:
                 f.close()
@@ -99,7 +99,7 @@
     However, according to Guido, it should be a piece of cake to
     implement[1] -- at least for a core hacker.
 
-    This patch was commited 17 December 2005, SVN revision 41740 [3].
+    This patch was committed 17 December 2005, SVN revision 41740 [3].
 
 
 References

Modified: peps/trunk/pep-0342.txt
==============================================================================
--- peps/trunk/pep-0342.txt	(original)
+++ peps/trunk/pep-0342.txt	Fri Apr 21 17:22:45 2006
@@ -572,7 +572,7 @@
     PEP is available as SourceForge patch #1223381
     (http://python.org/sf/1223381).
 
-    This patch was commited to CVS 01-02 August 2005.
+    This patch was committed to CVS 01-02 August 2005.
 
 
 Acknowledgements


More information about the Python-checkins mailing list