[Python-checkins] r74015 - python/branches/py3k/Modules/arraymodule.c

alexandre.vassalotti python-checkins at python.org
Wed Jul 15 20:31:07 CEST 2009


Author: alexandre.vassalotti
Date: Wed Jul 15 20:31:06 2009
New Revision: 74015

Log:
Fix omission in a comment.


Modified:
   python/branches/py3k/Modules/arraymodule.c

Modified: python/branches/py3k/Modules/arraymodule.c
==============================================================================
--- python/branches/py3k/Modules/arraymodule.c	(original)
+++ python/branches/py3k/Modules/arraymodule.c	Wed Jul 15 20:31:06 2009
@@ -1905,7 +1905,7 @@
 		 * (e.g., non-IEEE floats), or we are pickling the array using
 		 * a Python 2.x compatible protocol.
 		 *
-		 * It is necessary to a list representation for Python 2.x
+		 * It is necessary to use a list representation for Python 2.x
 		 * compatible pickle protocol, since Python 2's str objects
 		 * are unpickled as unicode by Python 3. Thus it is impossible
 		 * to make arrays unpicklable by Python 3 by using their memory


More information about the Python-checkins mailing list