]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-90699: Remove usage of _Py_IDENTIFIER from bisect module. (GH-91522)
authorDong-hee Na <donghee.na@python.org>
Thu, 14 Apr 2022 05:57:25 +0000 (14:57 +0900)
committerGitHub <noreply@github.com>
Thu, 14 Apr 2022 05:57:25 +0000 (14:57 +0900)
Modules/_bisectmodule.c

index f884d94413c0d7d817d622ba421a62feee4d6931..c54dc4979d00b5e8936d9f6b4bd6e24430706615 100644 (file)
@@ -4,7 +4,6 @@ Converted to C by Dmitry Vasiliev (dima at hlabs.spb.ru).
 */
 
 #define PY_SSIZE_T_CLEAN
-#define NEEDS_PY_IDENTIFIER
 #include "Python.h"
 
 /*[clinic input]
@@ -14,8 +13,6 @@ module _bisect
 
 #include "clinic/_bisectmodule.c.h"
 
-_Py_IDENTIFIER(insert);
-
 static inline Py_ssize_t
 internal_bisect_right(PyObject *list, PyObject *item, Py_ssize_t lo, Py_ssize_t hi,
                       PyObject* key)
@@ -132,7 +129,7 @@ _bisect_insort_right_impl(PyObject *module, PyObject *a, PyObject *x,
             return NULL;
     }
     else {
-        result = _PyObject_CallMethodId(a, &PyId_insert, "nO", index, x);
+        result = PyObject_CallMethod(a, "insert", "nO", index, x);
         if (result == NULL)
             return NULL;
         Py_DECREF(result);
@@ -258,7 +255,7 @@ _bisect_insort_left_impl(PyObject *module, PyObject *a, PyObject *x,
         if (PyList_Insert(a, index, x) < 0)
             return NULL;
     } else {
-        result = _PyObject_CallMethodId(a, &PyId_insert, "nO", index, x);
+        result = PyObject_CallMethod(a, "insert", "nO", index, x);
         if (result == NULL)
             return NULL;
         Py_DECREF(result);