Skip to content

Commit 19035cb

Browse files
Update bytes_ops.c
1 parent 089a39c commit 19035cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mypyc/lib-rt/bytes_ops.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)