File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -189,7 +189,7 @@ PyObject *CPyBytes_RjustDefaultFill(PyObject *self, CPyTagged width) {
189189}
190190
191191
192- PyObject * CPyBytes_Rjust (PyObject * self , CPyTagged width , PyObject * fillbyte ) {
192+ PyObject * CPyBytes_RjustCustomFill (PyObject * self , CPyTagged width , PyObject * fillbyte ) {
193193 if (!PyBytes_Check (self )) {
194194 PyErr_SetString (PyExc_TypeError , "self must be bytes" );
195195 return NULL ;
@@ -238,7 +238,7 @@ PyObject *CPyBytes_LjustDefaultFill(PyObject *self, CPyTagged width) {
238238}
239239
240240
241- PyObject * CPyBytes_Ljust (PyObject * self , CPyTagged width , PyObject * fillbyte ) {
241+ PyObject * CPyBytes_LjustCustomFill (PyObject * self , CPyTagged width , PyObject * fillbyte ) {
242242 if (!PyBytes_Check (self )) {
243243 PyErr_SetString (PyExc_TypeError , "self must be bytes" );
244244 return NULL ;
You can’t perform that action at this time.
0 commit comments