From 262c3ce50711bcfc8141277b21a2dabb782fbca5 Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Thu, 14 Jan 2010 11:39:50 +0000 Subject: Merged revisions 77487 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r77487 | ezio.melotti | 2010-01-14 13:34:10 +0200 (Thu, 14 Jan 2010) | 1 line Fixed typo ........ --- Objects/bytearrayobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/bytearrayobject.c b/Objects/bytearrayobject.c index 01c5e11..8aa2928 100644 --- a/Objects/bytearrayobject.c +++ b/Objects/bytearrayobject.c @@ -1029,7 +1029,7 @@ bytes_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; } -- cgit v0.12