summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorInada Naoki <songofacandy@gmail.com>2020-06-29 04:00:43 (GMT)
committerGitHub <noreply@github.com>2020-06-29 04:00:43 (GMT)
commite4f1fe6edb216e04da03ae80b462ca273f00255b (patch)
tree6d6a6d56b5cae2fe05e26a4aa36fcaaa04116b50 /Include
parentd9f2a13106254c53550583adca70aeb3979f2993 (diff)
downloadcpython-e4f1fe6edb216e04da03ae80b462ca273f00255b.zip
cpython-e4f1fe6edb216e04da03ae80b462ca273f00255b.tar.gz
cpython-e4f1fe6edb216e04da03ae80b462ca273f00255b.tar.bz2
bpo-41123: Remove PyLong_FromUnicode() (GH-21204)
Diffstat (limited to 'Include')
-rw-r--r--Include/longobject.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/longobject.h b/Include/longobject.h
index dad08c2..06e3e24 100644
--- a/Include/longobject.h
+++ b/Include/longobject.h
@@ -102,8 +102,6 @@ PyAPI_FUNC(long long) PyLong_AsLongLongAndOverflow(PyObject *, int *);
PyAPI_FUNC(PyObject *) PyLong_FromString(const char *, char **, int);
#ifndef Py_LIMITED_API
-Py_DEPRECATED(3.3)
-PyAPI_FUNC(PyObject *) PyLong_FromUnicode(Py_UNICODE*, Py_ssize_t, int);
PyAPI_FUNC(PyObject *) PyLong_FromUnicodeObject(PyObject *u, int base);
PyAPI_FUNC(PyObject *) _PyLong_FromBytes(const char *, Py_ssize_t, int);
#endif