Skip to content

Commit

Permalink
fix formatting of literal in docstring
Browse files Browse the repository at this point in the history
Of from_bytes and to_bytes
  • Loading branch information
jenshnielsen committed Apr 13, 2024
1 parent 022ba6d commit aa2fd3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Objects/longobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -6291,7 +6291,7 @@ int.to_bytes
the most significant byte is at the beginning of the byte array. If
byteorder is 'little', the most significant byte is at the end of the
byte array. To request the native byte order of the host system, use
`sys.byteorder' as the byte order value. Default is to use 'big'.
`sys.byteorder` as the byte order value. Default is to use 'big'.
*
signed as is_signed: bool = False
Determines whether two's complement is used to represent the integer.
Expand Down Expand Up @@ -6355,7 +6355,7 @@ int.from_bytes
the most significant byte is at the beginning of the byte array. If
byteorder is 'little', the most significant byte is at the end of the
byte array. To request the native byte order of the host system, use
`sys.byteorder' as the byte order value. Default is to use 'big'.
`sys.byteorder` as the byte order value. Default is to use 'big'.
*
signed as is_signed: bool = False
Indicates whether two's complement is used to represent the integer.
Expand Down

0 comments on commit aa2fd3d

Please sign in to comment.