summaryrefslogtreecommitdiffstats
path: root/Modules/arraymodule.c
diff options
context:
space:
mode:
authorAlexandre Vassalotti <alexandre@peadrop.com>2009-07-15 18:31:06 (GMT)
committerAlexandre Vassalotti <alexandre@peadrop.com>2009-07-15 18:31:06 (GMT)
commit5f8ed3702dd17751995cd0251524856200b1200e (patch)
tree1a3af78e428c19e82ac740f0acf6610bd581c7b5 /Modules/arraymodule.c
parentad077154d0f305ee0ba5bf41d3cb47d1d9c43e7b (diff)
downloadcpython-5f8ed3702dd17751995cd0251524856200b1200e.zip
cpython-5f8ed3702dd17751995cd0251524856200b1200e.tar.gz
cpython-5f8ed3702dd17751995cd0251524856200b1200e.tar.bz2
Fix omission in a comment.
Diffstat (limited to 'Modules/arraymodule.c')
-rw-r--r--Modules/arraymodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c
index 72b2043..236c952 100644
--- a/Modules/arraymodule.c
+++ b/Modules/arraymodule.c
@@ -1905,7 +1905,7 @@ array_reduce_ex(arrayobject *array, PyObject *value)
* (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