[Python-checkins] cpython (merge 3.6 -> default): Issue #29087: Removed the documentation of non-existing UCS4 support functions.

serhiy.storchaka python-checkins at python.org
Wed Dec 28 02:20:16 EST 2016


https://hg.python.org/cpython/rev/0ec4befef7e0
changeset:   105861:0ec4befef7e0
parent:      105858:fa9933bf4ea0
parent:      105860:e44b6b01c8cf
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Wed Dec 28 09:20:00 2016 +0200
summary:
  Issue #29087: Removed the documentation of non-existing UCS4 support functions.

files:
  Doc/c-api/unicode.rst |  20 --------------------
  1 files changed, 0 insertions(+), 20 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
@@ -942,26 +942,6 @@
    .. versionadded:: 3.2
 
 
-UCS4 Support
-""""""""""""
-
-.. versionadded:: 3.3
-
-.. XXX are these meant to be public?
-
-.. c:function:: size_t Py_UCS4_strlen(const Py_UCS4 *u)
-                Py_UCS4* Py_UCS4_strcpy(Py_UCS4 *s1, const Py_UCS4 *s2)
-                Py_UCS4* Py_UCS4_strncpy(Py_UCS4 *s1, const Py_UCS4 *s2, size_t n)
-                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* 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.
-
-
 .. _builtincodecs:
 
 Built-in Codecs

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


More information about the Python-checkins mailing list