[Python-checkins] cpython: Add missing prefixes

antoine.pitrou python-checkins at python.org
Sat Oct 22 22:12:48 CEST 2011


http://hg.python.org/cpython/rev/07ee3c357e1a
changeset:   73057:07ee3c357e1a
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Sat Oct 22 22:08:46 2011 +0200
summary:
  Add missing prefixes

files:
  Doc/c-api/unicode.rst |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Doc/c-api/unicode.rst b/Doc/c-api/unicode.rst
--- a/Doc/c-api/unicode.rst
+++ b/Doc/c-api/unicode.rst
@@ -819,8 +819,8 @@
                 Py_UCS4* Py_UCS4_strcat(Py_UCS4 *s1, const Py_UCS4 *s2)
                 int Py_UCS4_strcmp(const Py_UCS4 *s1, const Py_UCS4 *s2)
                 int Py_UCS4_strncmp(const Py_UCS4 *s1, const Py_UCS4 *s2, size_t n)
-                Py_UCS4* strchr(const Py_UCS4 *s, Py_UCS4 c)
-                Py_UCS4* strrchr(const Py_UCS4 *s, Py_UCS4 c)
+                Py_UCS4* Py_UCS4_strchr(const Py_UCS4 *s, Py_UCS4 c)
+                Py_UCS4* Py_UCS4_strrchr(const Py_UCS4 *s, Py_UCS4 c)
 
    These utility functions work on strings of :c:type:`Py_UCS4` characters and
    otherwise behave like the C standard library functions with the same name.

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list