mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
@@ -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