We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0c7236 commit b719dc0Copy full SHA for b719dc0
mypyc/lib-rt/CPy.h
@@ -753,8 +753,8 @@ bool CPyStr_IsTrue(PyObject *obj);
753
Py_ssize_t CPyStr_Size_size_t(PyObject *str);
754
PyObject *CPy_Decode(PyObject *obj, PyObject *encoding, PyObject *errors);
755
PyObject *CPy_Encode(PyObject *obj, PyObject *encoding, PyObject *errors);
756
-Py_ssize_t CPyStr_Count(PyObject *unicode, PyObject *substring, CPyTagged start);
757
-Py_ssize_t CPyStr_CountFull(PyObject *unicode, PyObject *substring, CPyTagged start, CPyTagged end);
+Py_ssize_t CPyStr_Count(PyObject *unicode, PyObject *substring, Py_ssize_t start);
+Py_ssize_t CPyStr_CountFull(PyObject *unicode, PyObject *substring, Py_ssize_t start, Py_ssize_t end);
758
CPyTagged CPyStr_Ord(PyObject *obj);
759
760
0 commit comments