]> granicus.if.org Git - python/commitdiff
Fix typo.
authorGeorg Brandl <georg@python.org>
Sat, 4 Dec 2010 17:09:30 +0000 (17:09 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 4 Dec 2010 17:09:30 +0000 (17:09 +0000)
Objects/bytearrayobject.c

index 32b8bb574b9e5d5291261e82641c18617f37e168..ac67d0b1b626ff2984e7646e18b89c84a77ecb36 100644 (file)
@@ -589,7 +589,7 @@ bytearray_ass_subscript(PyByteArrayObject *self, PyObject *index, PyObject *valu
         needed = 0;
     }
     else if (values == (PyObject *)self || !PyByteArray_Check(values)) {
-        /* Make a copy an call this function recursively */
+        /* Make a copy and call this function recursively */
         int err;
         values = PyByteArray_FromObject(values);
         if (values == NULL)