summaryrefslogtreecommitdiffstats
path: root/Doc/c-api/unicode.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-12-28 07:20:00 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-12-28 07:20:00 (GMT)
commitfc600834d8a8d2b724b86d187da4abc42275ab0a (patch)
tree37c49754d3fa22a1aa84a3e1816603a900171c85 /Doc/c-api/unicode.rst
parent937b725d64ac8399521757438b50e893947c8b0f (diff)
parent44223e9550e4dd615080f8b3f5cd5f6332cb057f (diff)
downloadcpython-fc600834d8a8d2b724b86d187da4abc42275ab0a.zip
cpython-fc600834d8a8d2b724b86d187da4abc42275ab0a.tar.gz
cpython-fc600834d8a8d2b724b86d187da4abc42275ab0a.tar.bz2
Issue #29087: Removed the documentation of non-existing UCS4 support functions.
Diffstat (limited to 'Doc/c-api/unicode.rst')
-rw-r--r--Doc/c-api/unicode.rst20
1 files changed, 0 insertions, 20 deletions
diff --git a/Doc/c-api/unicode.rst b/Doc/c-api/unicode.rst
index b57d70a..a5d6c86 100644
--- a/Doc/c-api/unicode.rst
+++ b/Doc/c-api/unicode.rst
@@ -942,26 +942,6 @@ wchar_t Support
.. 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