[Python-checkins] r83977 - python/branches/py3k/Doc/c-api/unicode.rst

georg.brandl python-checkins at python.org
Fri Aug 13 17:10:50 CEST 2010


Author: georg.brandl
Date: Fri Aug 13 17:10:49 2010
New Revision: 83977

Log:
Fix copy-paste error.

Modified:
   python/branches/py3k/Doc/c-api/unicode.rst

Modified: python/branches/py3k/Doc/c-api/unicode.rst
==============================================================================
--- python/branches/py3k/Doc/c-api/unicode.rst	(original)
+++ python/branches/py3k/Doc/c-api/unicode.rst	Fri Aug 13 17:10:49 2010
@@ -682,7 +682,7 @@
    *s*.  Return *NULL* if an exception was raised by the codec.
 
 
-.. cfunction:: PyObject* PyUnicode_DecodeUTF8Stateful(const char *s, Py_ssize_t size, const char *errors, Py_ssize_t *consumed)
+.. cfunction:: PyObject* PyUnicode_DecodeUTF7Stateful(const char *s, Py_ssize_t size, const char *errors, Py_ssize_t *consumed)
 
    If *consumed* is *NULL*, behave like :cfunc:`PyUnicode_DecodeUTF7`.  If
    *consumed* is not *NULL*, trailing incomplete UTF-7 base-64 sections will not


More information about the Python-checkins mailing list