]> granicus.if.org Git - python/commitdiff
bpo-29932: Fix small error message typos in arraymodule.c (GH-888)
authorSylvain <sylvain.desodt+github@gmail.com>
Wed, 29 Mar 2017 18:09:22 +0000 (20:09 +0200)
committerBrett Cannon <brettcannon@users.noreply.github.com>
Wed, 29 Mar 2017 18:09:22 +0000 (11:09 -0700)
Modules/arraymodule.c

index b30f7594c25a24a2e408ddcf18afff179851c601..e067b30b999dbe13af20b279d64562a8b4c3d2c6 100644 (file)
@@ -1920,7 +1920,7 @@ array__array_reconstructor_impl(PyObject *module, PyTypeObject *arraytype,
 
     if (!PyType_Check(arraytype)) {
         PyErr_Format(PyExc_TypeError,
-            "first argument must a type object, not %.200s",
+            "first argument must be a type object, not %.200s",
             Py_TYPE(arraytype)->tp_name);
         return NULL;
     }
@@ -2143,7 +2143,7 @@ array_array___reduce_ex__(arrayobject *self, PyObject *value)
 
     if (!PyLong_Check(value)) {
         PyErr_SetString(PyExc_TypeError,
-                        "__reduce_ex__ argument should an integer");
+                        "__reduce_ex__ argument should be an integer");
         return NULL;
     }
     protocol = PyLong_AsLong(value);
@@ -2368,7 +2368,7 @@ array_ass_subscr(arrayobject* self, PyObject* item, PyObject* value)
     }
     else {
         PyErr_SetString(PyExc_TypeError,
-                        "array indices must be integer");
+                        "array indices must be integers");
         return -1;
     }
     if (value == NULL) {