Commit fdc58fd8 authored by R David Murray's avatar R David Murray

Merge: Fix verb tense in base64 docs, and the phrasing of a news entry.

parents 66bf12a5 78ee3289
...@@ -107,7 +107,7 @@ The modern interface provides: ...@@ -107,7 +107,7 @@ The modern interface provides:
digit 0 is always mapped to the letter O). For security purposes the default is digit 0 is always mapped to the letter O). For security purposes the default is
``None``, so that 0 and 1 are not allowed in the input. ``None``, so that 0 and 1 are not allowed in the input.
The decoded byte string is returned. A :exc:`binascii.Error` is raised if *s* were The decoded byte string is returned. A :exc:`binascii.Error` is raised if *s* is
incorrectly padded or if there are non-alphabet characters present in the incorrectly padded or if there are non-alphabet characters present in the
string. string.
......
...@@ -2131,9 +2131,9 @@ Library ...@@ -2131,9 +2131,9 @@ Library
- Issue #18025: Fixed a segfault in io.BufferedIOBase.readinto() when raw - Issue #18025: Fixed a segfault in io.BufferedIOBase.readinto() when raw
stream's read() returns more bytes than requested. stream's read() returns more bytes than requested.
- Issue #18011: base64.b32decode() now raises a binascii.Error if there are - Issue #18011: As was originally intended, base64.b32decode() now raises a
non-alphabet characters present in the input string to conform a docstring. binascii.Error if there are non-b32-alphabet characters present in the input
Updated the module documentation. string, instead of a TypeError.
- Issue #18072: Implement importlib.abc.InspectLoader.get_code() and - Issue #18072: Implement importlib.abc.InspectLoader.get_code() and
importlib.abc.ExecutionLoader.get_code(). importlib.abc.ExecutionLoader.get_code().
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment