@@ -6291,7 +6291,7 @@ int.to_bytes
6291
6291
the most significant byte is at the beginning of the byte array. If
6292
6292
byteorder is 'little', the most significant byte is at the end of the
6293
6293
byte array. To request the native byte order of the host system, use
6294
- ` sys.byteorder' as the byte order value. Default is to use 'big'.
6294
+ sys.byteorder as the byte order value. Default is to use 'big'.
6295
6295
*
6296
6296
signed as is_signed: bool = False
6297
6297
Determines whether two's complement is used to represent the integer.
@@ -6304,7 +6304,7 @@ Return an array of bytes representing an integer.
6304
6304
static PyObject *
6305
6305
int_to_bytes_impl (PyObject * self , Py_ssize_t length , PyObject * byteorder ,
6306
6306
int is_signed )
6307
- /*[clinic end generated code: output=89c801df114050a3 input=d42ecfb545039d71 ]*/
6307
+ /*[clinic end generated code: output=89c801df114050a3 input=a0103d0e9ad85c2b ]*/
6308
6308
{
6309
6309
int little_endian ;
6310
6310
PyObject * bytes ;
@@ -6355,7 +6355,7 @@ int.from_bytes
6355
6355
the most significant byte is at the beginning of the byte array. If
6356
6356
byteorder is 'little', the most significant byte is at the end of the
6357
6357
byte array. To request the native byte order of the host system, use
6358
- ` sys.byteorder' as the byte order value. Default is to use 'big'.
6358
+ sys.byteorder as the byte order value. Default is to use 'big'.
6359
6359
*
6360
6360
signed as is_signed: bool = False
6361
6361
Indicates whether two's complement is used to represent the integer.
@@ -6366,7 +6366,7 @@ Return the integer represented by the given array of bytes.
6366
6366
static PyObject *
6367
6367
int_from_bytes_impl (PyTypeObject * type , PyObject * bytes_obj ,
6368
6368
PyObject * byteorder , int is_signed )
6369
- /*[clinic end generated code: output=efc5d68e31f9314f input=33326dccdd655553 ]*/
6369
+ /*[clinic end generated code: output=efc5d68e31f9314f input=2ff527997fe7b0c5 ]*/
6370
6370
{
6371
6371
int little_endian ;
6372
6372
PyObject * long_obj , * bytes ;
0 commit comments