mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-06-22 00:40:48 +08:00
binascii.a2b_base64: new param in 3.11 (#7909)
https://github.com/python/cpython/commit/35b98e38b6edd63153fc8e092f94cb20725dacc1
This commit is contained in:
+6
-1
@@ -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: ...
|
||||
|
||||
Reference in New Issue
Block a user