Skip to content

Commit cddb7f9

Browse files
Update CPy.h
1 parent 55fc89c commit cddb7f9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

mypyc/lib-rt/CPy.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -767,8 +767,10 @@ CPyTagged CPyBytes_GetItem(PyObject *o, CPyTagged index);
767767
PyObject *CPyBytes_Concat(PyObject *a, PyObject *b);
768768
PyObject *CPyBytes_Join(PyObject *sep, PyObject *iter);
769769
CPyTagged CPyBytes_Ord(PyObject *obj);
770-
PyObject *CPyBytes_Ljust(PyObject *self, CPyTagged width, PyObject *fillbyte);
771-
PyObject *CPyBytes_Rjust(PyObject *self, CPyTagged width, PyObject *fillbyte);
770+
PyObject *CPyBytes_LjustDefaultFill(PyObject *self, CPyTagged width);
771+
PyObject *CPyBytes_RjustDefaultFill(PyObject *self, CPyTagged width);
772+
PyObject *CPyBytes_LjustCustomFill(PyObject *self, CPyTagged width, PyObject *fillbyte);
773+
PyObject *CPyBytes_RjustCustomFill(PyObject *self, CPyTagged width, PyObject *fillbyte);
772774

773775

774776
int CPyBytes_Compare(PyObject *left, PyObject *right);

0 commit comments

Comments
 (0)