[Python-checkins] commit of r41372 - python/trunk/Objects

walter.doerwald@python.org walter.doerwald at python.org
Wed Nov 2 09:57:12 CET 2005


Author: walter.doerwald
Date: Wed Nov  2 09:57:11 2005
New Revision: 41372

Modified:
   python/trunk/Objects/unicodeobject.c
Log:
Fix typo in comment.


Modified: python/trunk/Objects/unicodeobject.c
==============================================================================
--- python/trunk/Objects/unicodeobject.c	(original)
+++ python/trunk/Objects/unicodeobject.c	Wed Nov  2 09:57:11 2005
@@ -3035,7 +3035,7 @@
    space is available. Return a new reference to the object that
    was put in the output buffer, or Py_None, if the mapping was undefined
    (in which case no character was written) or NULL, if a
-   reallocation error ocurred. The called must decref the result */
+   reallocation error ocurred. The caller must decref the result */
 static
 PyObject *charmapencode_output(Py_UNICODE c, PyObject *mapping,
     PyObject **outobj, int *outpos)


More information about the Python-checkins mailing list