commit | e4f1fe6edb216e04da03ae80b462ca273f00255b | [log] [tgz] |
---|---|---|
author | Inada Naoki <songofacandy@gmail.com> | Mon Jun 29 13:00:43 2020 +0900 |
committer | GitHub <noreply@github.com> | Mon Jun 29 13:00:43 2020 +0900 |
tree | 6d6a6d56b5cae2fe05e26a4aa36fcaaa04116b50 | |
parent | d9f2a13106254c53550583adca70aeb3979f2993 [diff] [blame] |
bpo-41123: Remove PyLong_FromUnicode() (GH-21204)
diff --git a/Objects/abstract.c b/Objects/abstract.c index 0d3f4ac..3494f33 100644 --- a/Objects/abstract.c +++ b/Objects/abstract.c
@@ -1429,7 +1429,7 @@ return NULL; if (PyUnicode_Check(o)) - /* The below check is done in PyLong_FromUnicode(). */ + /* The below check is done in PyLong_FromUnicodeObject(). */ return PyLong_FromUnicodeObject(o, 10); if (PyBytes_Check(o))