binascii.a2b_base64: new param in 3.11 (#7909)

35b98e38b6
This commit is contained in:
Jelle Zijlstra
2022-05-21 08:36:03 -07:00
committed by GitHub
parent 9c0c631e46
commit 237b1bb189
2 changed files with 6 additions and 2 deletions

View File

@@ -14,7 +14,12 @@ if sys.version_info >= (3, 7):
else:
def b2a_uu(__data: ReadableBuffer) -> bytes: ...
def a2b_base64(__data: _AsciiBuffer) -> bytes: ...
if sys.version_info >= (3, 11):
def a2b_base64(__data: _AsciiBuffer, *, strict_mode: bool = ...) -> bytes: ...
else:
def a2b_base64(__data: _AsciiBuffer) -> bytes: ...
def b2a_base64(__data: ReadableBuffer, *, newline: bool = ...) -> bytes: ...
def a2b_qp(data: _AsciiBuffer, header: bool = ...) -> bytes: ...
def b2a_qp(data: ReadableBuffer, quotetabs: bool = ..., istext: bool = ..., header: bool = ...) -> bytes: ...

View File

@@ -32,7 +32,6 @@ asyncio.sslproto._SSLProtocolTransport.get_read_buffer_size
asyncio.sslproto._SSLProtocolTransport.set_read_buffer_limits
asyncio.sslproto.add_flowcontrol_defaults
bdb.Breakpoint.clearBreakpoints
binascii.a2b_base64
builtins.dict.get
concurrent.futures.ProcessPoolExecutor.__init__
concurrent.futures.process.ProcessPoolExecutor.__init__