]> granicus.if.org Git - python/commitdiff
Issue #21449: Removed private function _PyUnicode_CompareWithId.
authorSerhiy Storchaka <storchaka@gmail.com>
Wed, 16 Nov 2016 13:56:27 +0000 (15:56 +0200)
committerSerhiy Storchaka <storchaka@gmail.com>
Wed, 16 Nov 2016 13:56:27 +0000 (15:56 +0200)
Include/unicodeobject.h
Objects/unicodeobject.c

index f8f98bdd0e0810258120ea60f9be95efb10e495a..67c4422df417088868ae8a7c61f0519867780bcd 100644 (file)
@@ -2037,15 +2037,6 @@ PyAPI_FUNC(int) PyUnicode_Compare(
     );
 
 #ifndef Py_LIMITED_API
-/* Compare a string with an identifier and return -1, 0, 1 for less than,
-   equal, and greater than, respectively.
-   Raise an exception and return -1 on error. */
-
-PyAPI_FUNC(int) _PyUnicode_CompareWithId(
-    PyObject *left,             /* Left string */
-    _Py_Identifier *right       /* Right identifier */
-    );
-
 /* Test whether a unicode is equal to ASCII identifier.  Return 1 if true,
    0 otherwise.  Return 0 if any argument contains non-ASCII characters.
    Any error occurs inside will be cleared before return. */
index d5ccfb8d07cf6cf07c0f8d280c3b970b82f6c7ec..8bbf0d594fd05a6c8f977b7d6dfef5e7f15140e9 100644 (file)
@@ -11011,15 +11011,6 @@ PyUnicode_Compare(PyObject *left, PyObject *right)
     return -1;
 }
 
-int
-_PyUnicode_CompareWithId(PyObject *left, _Py_Identifier *right)
-{
-    PyObject *right_str = _PyUnicode_FromId(right);   /* borrowed */
-    if (right_str == NULL)
-        return -1;
-    return PyUnicode_Compare(left, right_str);
-}
-
 int
 PyUnicode_CompareWithASCIIString(PyObject* uni, const char* str)
 {