aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorInada Naoki <songofacandy@gmail.com>2020-06-29 10:46:51 +0900
committerGitHub <noreply@github.com>2020-06-29 10:46:51 +0900
commitd9f2a13106254c53550583adca70aeb3979f2993 (patch)
treea788d021fde88b2d0f8a328105a9b9a97f450167 /Include/cpython/unicodeobject.h
parentbpo-40874 Update the required libmpdec version for the decimal module (GH-21202) (diff)
downloadcpython-d9f2a13106254c53550583adca70aeb3979f2993.tar.gz
cpython-d9f2a13106254c53550583adca70aeb3979f2993.tar.bz2
cpython-d9f2a13106254c53550583adca70aeb3979f2993.zip
bpo-41123: Remove PyUnicode_GetMax() (GH-21192)
Diffstat (limited to 'Include/cpython/unicodeobject.h')
-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 bcf99849f9f..c1a8564349b 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 ----------------------------------------------- */