Skip to content

Commit 2e1b98f

Browse files
Update Objects/bytesobject.c
Co-authored-by: Victor Stinner <[email protected]>
1 parent 524103a commit 2e1b98f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Objects/bytesobject.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1339,8 +1339,8 @@ _PyBytes_ReverseFind(const char *haystack, Py_ssize_t len_haystack,
13391339
PyObject *
13401340
PyBytes_Repr(PyObject *obj, int smartquotes)
13411341
{
1342-
return _Py_bytes_repr(PyBytes_AS_STRING(obj),
1343-
PyBytes_GET_SIZE(obj), smartquotes, "bytes");
1342+
return _Py_bytes_repr(PyBytes_AS_STRING(obj), PyBytes_GET_SIZE(obj),
1343+
smartquotes, "bytes");
13441344
}
13451345

13461346
PyObject *

0 commit comments

Comments
 (0)