mirror of
https://github.com/python/cpython.git
synced 2025-08-02 16:13:13 +00:00
Issue #25706: Fixed markup in the documentation.
This commit is contained in:
commit
1f847659f3
3 changed files with 4 additions and 4 deletions
|
@ -148,7 +148,7 @@ The modern interface provides:
|
|||
instead of 4 consecutive spaces (ASCII 0x20) as supported by 'btoa'. This
|
||||
feature is not supported by the "standard" Ascii85 encoding.
|
||||
|
||||
*wrapcol* controls whether the output should have newline ('\n')
|
||||
*wrapcol* controls whether the output should have newline (``'\n'``)
|
||||
characters added to it. If this is non-zero, each output line will be
|
||||
at most this many characters long.
|
||||
|
||||
|
@ -161,7 +161,7 @@ The modern interface provides:
|
|||
.. versionadded:: 3.4
|
||||
|
||||
|
||||
.. function:: a85decode(s, *, foldspaces=False, adobe=False, ignorechars=b' \t\n\r\v')
|
||||
.. function:: a85decode(s, *, foldspaces=False, adobe=False, ignorechars=b' \\t\\n\\r\\v')
|
||||
|
||||
Decode an Ascii85 encoded byte string.
|
||||
|
||||
|
|
|
@ -2940,7 +2940,7 @@ place, and instead produce new objects.
|
|||
|
||||
Return true if all bytes in the sequence are ASCII whitespace and the
|
||||
sequence is not empty, false otherwise. ASCII whitespace characters are
|
||||
those byte values in the sequence b' \t\n\r\x0b\f' (space, tab, newline,
|
||||
those byte values in the sequence ``b' \t\n\r\x0b\f'`` (space, tab, newline,
|
||||
carriage return, vertical tab, form feed).
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue