From: Ezio Melotti Date: Thu, 14 Jan 2010 11:34:10 +0000 (+0000) Subject: Fixed typo X-Git-Tag: v2.7a3~158 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d234208588ed84e97d95df294f33e4426211682c;p=thirdparty%2FPython%2Fcpython.git Fixed typo --- diff --git a/Objects/bytearrayobject.c b/Objects/bytearrayobject.c index 74cb1f1623d4..308bd07c5148 100644 --- a/Objects/bytearrayobject.c +++ b/Objects/bytearrayobject.c @@ -1032,7 +1032,7 @@ bytearray_richcompare(PyObject *self, PyObject *other, int op) PyObject_IsInstance(other, (PyObject*)&PyUnicode_Type)) { if (Py_BytesWarningFlag && op == Py_EQ) { if (PyErr_WarnEx(PyExc_BytesWarning, - "Comparsion between bytearray and string", 1)) + "Comparison between bytearray and string", 1)) return NULL; }