diff options
author | Georg Brandl <georg@python.org> | 2008-06-04 11:30:26 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-06-04 11:30:26 +0000 |
commit | e5d68aceb529934e75d505bbfaf867e02493a1bc (patch) | |
tree | 4b3704507702b98e0ce4107403a72093a5d6b9fc /Objects/bytesobject.c | |
parent | f342bfcbd4c5648507fca5504cedb295927bf5b5 (diff) | |
download | cpython-git-e5d68aceb529934e75d505bbfaf867e02493a1bc.tar.gz |
Fix misspelling.
Diffstat (limited to 'Objects/bytesobject.c')
-rw-r--r-- | Objects/bytesobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/bytesobject.c b/Objects/bytesobject.c index b64178d623..3f22e7c772 100644 --- a/Objects/bytesobject.c +++ b/Objects/bytesobject.c @@ -818,7 +818,7 @@ string_richcompare(PyBytesObject *a, PyBytesObject *b, int op) PyObject_IsInstance((PyObject*)b, (PyObject*)&PyUnicode_Type))) { if (PyErr_WarnEx(PyExc_BytesWarning, - "Comparsion between bytes and string", 1)) + "Comparison between bytes and string", 1)) return NULL; } result = Py_NotImplemented; |