From: Georg Brandl Date: Wed, 5 Oct 2011 14:12:21 +0000 (+0200) Subject: Fix grammar. X-Git-Tag: v3.3.0a1~1318 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4975a9b44d8445289f1e60cffa8d06ff48ac48be;p=thirdparty%2FPython%2Fcpython.git Fix grammar. --- diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h index 0c2b488b5e14..f706369f6daa 100644 --- a/Include/unicodeobject.h +++ b/Include/unicodeobject.h @@ -426,7 +426,7 @@ PyAPI_DATA(PyTypeObject) PyUnicodeIter_Type; #define PyUnicode_CHARACTER_SIZE(op) \ (1 << (PyUnicode_KIND(op) - 1)) -/* Return pointers to the canonical representation casted as unsigned char, +/* Return pointers to the canonical representation cast to unsigned char, Py_UCS2, or Py_UCS4 for direct character access. No checks are performed, use PyUnicode_CHARACTER_SIZE or PyUnicode_KIND() before to ensure these will work correctly. */