summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorInada Naoki <songofacandy@gmail.com>2020-06-29 01:46:51 (GMT)
committerGitHub <noreply@github.com>2020-06-29 01:46:51 (GMT)
commitd9f2a13106254c53550583adca70aeb3979f2993 (patch)
treea788d021fde88b2d0f8a328105a9b9a97f450167 /Include
parent8bea91b5e9ea07ca93958e131b436024f0b1b1cf (diff)
downloadcpython-d9f2a13106254c53550583adca70aeb3979f2993.zip
cpython-d9f2a13106254c53550583adca70aeb3979f2993.tar.gz
cpython-d9f2a13106254c53550583adca70aeb3979f2993.tar.bz2
bpo-41123: Remove PyUnicode_GetMax() (GH-21192)
Diffstat (limited to 'Include')
-rw-r--r--Include/cpython/unicodeobject.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/Include/cpython/unicodeobject.h b/Include/cpython/unicodeobject.h
index bcf9984..c1a8564 100644
--- a/Include/cpython/unicodeobject.h
+++ b/Include/cpython/unicodeobject.h
@@ -593,9 +593,6 @@ Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE *) PyUnicode_AsUnicodeAndSize(
Py_ssize_t *size /* location where to save the length */
);
-/* Get the maximum ordinal for a Unicode character. */
-Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE) PyUnicode_GetMax(void);
-
/* --- _PyUnicodeWriter API ----------------------------------------------- */