mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
Akuli and srittau: Remove Python 2 branches from Python 3 stubs (#5461)
* run script and do some manual changes (Akuli) * do the whole thing manually (srittau) * merge changes (Akuli) Co-authored-by: Sebastian Rittau <srittau@rittau.biz>
This commit is contained in:
@@ -1,15 +1,10 @@
|
||||
import sys
|
||||
from typing import Text, Union
|
||||
from typing import Union
|
||||
|
||||
if sys.version_info >= (3, 0):
|
||||
# But since Python 3.3 ASCII-only unicode strings are accepted by the
|
||||
# a2b_* functions.
|
||||
_Bytes = bytes
|
||||
_Ascii = Union[bytes, str]
|
||||
else:
|
||||
# Python 2 accepts unicode ascii pretty much everywhere.
|
||||
_Bytes = Text
|
||||
_Ascii = Text
|
||||
# Since Python 3.3 ASCII-only unicode strings are accepted by the
|
||||
# a2b_* functions.
|
||||
_Bytes = bytes
|
||||
_Ascii = Union[bytes, str]
|
||||
|
||||
def a2b_uu(__data: _Ascii) -> bytes: ...
|
||||
|
||||
@@ -20,13 +15,7 @@ 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 b2a_base64(__data: _Bytes, *, newline: bool = ...) -> 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: ...
|
||||
|
||||
Reference in New Issue
Block a user