diff options
author | Walter Dörwald <walter@livinglogic.de> | 2005-11-02 08:57:11 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2005-11-02 08:57:11 (GMT) |
commit | 2e2c02fedb67c277c2eafc7e57f3fb69ec700e40 (patch) | |
tree | ca51583c2f275eaed2b65fca943625369fdd09e9 /Objects/unicodeobject.c | |
parent | 9fd115cb6391d3ce8333eab46e6ee8c1ce302e44 (diff) | |
download | cpython-2e2c02fedb67c277c2eafc7e57f3fb69ec700e40.zip cpython-2e2c02fedb67c277c2eafc7e57f3fb69ec700e40.tar.gz cpython-2e2c02fedb67c277c2eafc7e57f3fb69ec700e40.tar.bz2 |
Fix typo in comment.
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r-- | Objects/unicodeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index cac6a2d..2a2829f 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -3035,7 +3035,7 @@ static PyObject *charmapencode_lookup(Py_UNICODE c, PyObject *mapping) 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) |