Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Polish docs.
  • Loading branch information
serhiy-storchaka committed Jan 3, 2026
commit 6d190e9b9b197bd00aff5a64b1d500e2ad7fb129
4 changes: 2 additions & 2 deletions Doc/library/base64.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ POST request.

If *wrapcol* is non-zero, insert a newline (``b'\n'``) character
after at most every *wrapcol* characters.
If *wrapcol* is zero (default), do not add any newlines.
If *wrapcol* is zero (default), do not insert any newlines.

May assert or raise a :exc:`ValueError` if the length of *altchars* is not 2. Raises a
:exc:`TypeError` if *altchars* is not a :term:`bytes-like object`.
Expand Down Expand Up @@ -223,7 +223,7 @@ Refer to the documentation of the individual functions for more information.

If *wrapcol* is non-zero, insert a newline (``b'\n'``) character
after at most every *wrapcol* characters.
If *wrapcol* is zero (default), do not add any newlines.
If *wrapcol* is zero (default), do not insert any newlines.

*pad* controls whether the input is padded to a multiple of 4
before encoding. Note that the ``btoa`` implementation always pads.
Expand Down
2 changes: 1 addition & 1 deletion Doc/library/binascii.rst
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ The :mod:`binascii` module defines the following functions:

If *wrapcol* is non-zero, insert a newline (``b'\n'``) character
after at most every *wrapcol* characters.
If *wrapcol* is zero (default), do not add any newlines.
If *wrapcol* is zero (default), do not insert any newlines.

If *newline* is true (default), a newline character will be added
at the end of the output.
Expand Down
Loading