Skip to content

Commit 2597c20

Browse files
committed
Update CPy.h
1 parent 18b2ecf commit 2597c20

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
@@ -770,8 +770,10 @@ CPyTagged CPyBytes_GetItem(PyObject *o, CPyTagged index);
770770
PyObject *CPyBytes_Concat(PyObject *a, PyObject *b);
771771
PyObject *CPyBytes_Join(PyObject *sep, PyObject *iter);
772772
CPyTagged CPyBytes_Ord(PyObject *obj);
773-
PyObject *CPyBytes_Ljust(PyObject *self, CPyTagged width, PyObject *fillbyte);
774-
PyObject *CPyBytes_Rjust(PyObject *self, CPyTagged width, PyObject *fillbyte);
773+
PyObject *CPyBytes_LjustDefaultFill(PyObject *self, CPyTagged width);
774+
PyObject *CPyBytes_RjustDefaultFill(PyObject *self, CPyTagged width);
775+
PyObject *CPyBytes_LjustCustomFill(PyObject *self, CPyTagged width, PyObject *fillbyte);
776+
PyObject *CPyBytes_RjustCustomFill(PyObject *self, CPyTagged width, PyObject *fillbyte);
775777

776778

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

0 commit comments

Comments
 (0)