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) {
189
189
}
190
190
191
191
192
- PyObject * CPyBytes_Rjust (PyObject * self , CPyTagged width , PyObject * fillbyte ) {
192
+ PyObject * CPyBytes_RjustCustomFill (PyObject * self , CPyTagged width , PyObject * fillbyte ) {
193
193
if (!PyBytes_Check (self )) {
194
194
PyErr_SetString (PyExc_TypeError , "self must be bytes" );
195
195
return NULL ;
@@ -238,7 +238,7 @@ PyObject *CPyBytes_LjustDefaultFill(PyObject *self, CPyTagged width) {
238
238
}
239
239
240
240
241
- PyObject * CPyBytes_Ljust (PyObject * self , CPyTagged width , PyObject * fillbyte ) {
241
+ PyObject * CPyBytes_LjustCustomFill (PyObject * self , CPyTagged width , PyObject * fillbyte ) {
242
242
if (!PyBytes_Check (self )) {
243
243
PyErr_SetString (PyExc_TypeError , "self must be bytes" );
244
244
return NULL ;
You can’t perform that action at this time.
0 commit comments