diff options
author | Georg Brandl <georg@python.org> | 2010-12-04 17:09:30 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-12-04 17:09:30 (GMT) |
commit | f3fa5685e85f7aa21c124bb6a71a076f80666f2c (patch) | |
tree | 0015b0c2a93f9fc1cc83578577e7d659700ed136 | |
parent | f8b893ec622e37c31f6f9ec3a666bba3195c15f8 (diff) | |
download | cpython-f3fa5685e85f7aa21c124bb6a71a076f80666f2c.zip cpython-f3fa5685e85f7aa21c124bb6a71a076f80666f2c.tar.gz cpython-f3fa5685e85f7aa21c124bb6a71a076f80666f2c.tar.bz2 |
Fix typo.
-rw-r--r-- | Objects/bytearrayobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/bytearrayobject.c b/Objects/bytearrayobject.c index 32b8bb5..ac67d0b 100644 --- a/Objects/bytearrayobject.c +++ b/Objects/bytearrayobject.c @@ -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) |