mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
apply black and isort (#4287)
* apply black and isort * move some type ignores
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
# Based on http://docs.python.org/3.2/library/binascii.html
|
||||
|
||||
import sys
|
||||
from typing import Union, Text
|
||||
from typing import Text, Union
|
||||
|
||||
if sys.version_info < (3,):
|
||||
# Python 2 accepts unicode ascii pretty much everywhere.
|
||||
@@ -16,15 +16,21 @@ else:
|
||||
_Ascii = Union[bytes, str]
|
||||
|
||||
def a2b_uu(__data: _Ascii) -> bytes: ...
|
||||
|
||||
if sys.version_info >= (3, 7):
|
||||
def b2a_uu(__data: _Bytes, *, backtick: bool = ...) -> bytes: ...
|
||||
|
||||
else:
|
||||
def b2a_uu(__data: _Bytes) -> bytes: ...
|
||||
|
||||
def a2b_base64(__data: _Ascii) -> bytes: ...
|
||||
|
||||
if sys.version_info >= (3, 6):
|
||||
def b2a_base64(__data: _Bytes, *, newline: bool = ...) -> bytes: ...
|
||||
|
||||
else:
|
||||
def b2a_base64(__data: _Bytes) -> bytes: ...
|
||||
|
||||
def a2b_qp(data: _Ascii, header: bool = ...) -> bytes: ...
|
||||
def b2a_qp(data: _Bytes, quotetabs: bool = ..., istext: bool = ..., header: bool = ...) -> bytes: ...
|
||||
def a2b_hqx(__data: _Ascii) -> bytes: ...
|
||||
@@ -34,10 +40,13 @@ def b2a_hqx(__data: _Bytes) -> bytes: ...
|
||||
def crc_hqx(__data: _Bytes, __crc: int) -> int: ...
|
||||
def crc32(__data: _Bytes, __crc: int = ...) -> int: ...
|
||||
def b2a_hex(__data: _Bytes) -> bytes: ...
|
||||
|
||||
if sys.version_info >= (3, 8):
|
||||
def hexlify(data: bytes, sep: Union[str, bytes] = ..., bytes_per_sep: int = ...) -> bytes: ...
|
||||
|
||||
else:
|
||||
def hexlify(__data: _Bytes) -> bytes: ...
|
||||
|
||||
def a2b_hex(__hexstr: _Ascii) -> bytes: ...
|
||||
def unhexlify(__hexstr: _Ascii) -> bytes: ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user