8000 fix formatting of literal in docstring · python/cpython@aa2fd3d · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit aa2fd3d

Browse files
committed
fix formatting of literal in docstring
Of from_bytes and to_bytes
1 parent 022ba6d commit aa2fd3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Objects/longobject.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6291,7 +6291,7 @@ int.to_bytes
62916291
the most significant byte is at the beginning of the byte array. If
62926292
byteorder is 'little', the most significant byte is at the end of the
62936293
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'.
62956295
*
62966296
signed as is_signed: bool = False
62976297
Determines whether two's complement is used to represent the integer.
@@ -6355,7 +6355,7 @@ int.from_bytes
63556355
the most significant byte is at the beginning of the byte array. If
63566356
byteorder is 'little', the most significant byte is at the end of the
63576357
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'.
63596359
*
63606360
signed as is_signed: bool = False
63616361
Indicates whether two's complement is used to represent the integer.

0 commit comments

Comments
 (0)
0