[Python-checkins] r87050 - python/branches/py3k/Objects/bytearrayobject.c
georg.brandl
python-checkins at python.org
Sat Dec 4 18:09:30 CET 2010
Author: georg.brandl
Date: Sat Dec 4 18:09:30 2010
New Revision: 87050
Log:
Fix typo.
Modified:
python/branches/py3k/Objects/bytearrayobject.c
Modified: python/branches/py3k/Objects/bytearrayobject.c
==============================================================================
--- python/branches/py3k/Objects/bytearrayobject.c (original)
+++ python/branches/py3k/Objects/bytearrayobject.c Sat Dec 4 18:09:30 2010
@@ -589,7 +589,7 @@
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)
More information about the Python-checkins
mailing list