PEP 3101: Resolve dangling hyphens (#3360)
This commit is contained in:
parent
eaa4742315
commit
f5b8e92ae8
|
@ -310,10 +310,10 @@ The available integer presentation types are::
|
||||||
Unicode character before printing.
|
Unicode character before printing.
|
||||||
'd' - Decimal Integer. Outputs the number in base 10.
|
'd' - Decimal Integer. Outputs the number in base 10.
|
||||||
'o' - Octal format. Outputs the number in base 8.
|
'o' - Octal format. Outputs the number in base 8.
|
||||||
'x' - Hex format. Outputs the number in base 16, using lower-
|
'x' - Hex format. Outputs the number in base 16, using
|
||||||
case letters for the digits above 9.
|
lower-case letters for the digits above 9.
|
||||||
'X' - Hex format. Outputs the number in base 16, using upper-
|
'X' - Hex format. Outputs the number in base 16, using
|
||||||
case letters for the digits above 9.
|
upper-case letters for the digits above 9.
|
||||||
'n' - Number. This is the same as 'd', except that it uses the
|
'n' - Number. This is the same as 'd', except that it uses the
|
||||||
current locale setting to insert the appropriate
|
current locale setting to insert the appropriate
|
||||||
number separator characters.
|
number separator characters.
|
||||||
|
|
Loading…
Reference in New Issue