#11515: Merge with 3.2.

This commit is contained in:
Ezio Melotti 2011-03-15 06:03:08 +02:00
commit 373089239b
50 changed files with 59 additions and 59 deletions

View file

@ -2245,7 +2245,7 @@ bytearray_extend(PyByteArrayObject *self, PyObject *arg)
if (it == NULL)
return NULL;
/* Try to determine the length of the argument. 32 is abitrary. */
/* Try to determine the length of the argument. 32 is arbitrary. */
buf_size = _PyObject_LengthHint(arg, 32);
if (buf_size == -1) {
Py_DECREF(it);