File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -770,8 +770,10 @@ CPyTagged CPyBytes_GetItem(PyObject *o, CPyTagged index);
770
770
PyObject * CPyBytes_Concat (PyObject * a , PyObject * b );
771
771
PyObject * CPyBytes_Join (PyObject * sep , PyObject * iter );
772
772
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 );
775
777
776
778
777
779
int CPyBytes_Compare (PyObject * left , PyObject * right );
You can’t perform that action at this time.
0 commit comments