mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-08-01 13:40:23 +08:00
Remove Python 3.6 branches from typeshed (#8269)
This commit is contained in:
+1
-6
@@ -7,12 +7,7 @@ from typing_extensions import TypeAlias
|
||||
_AsciiBuffer: TypeAlias = str | ReadableBuffer
|
||||
|
||||
def a2b_uu(__data: _AsciiBuffer) -> bytes: ...
|
||||
|
||||
if sys.version_info >= (3, 7):
|
||||
def b2a_uu(__data: ReadableBuffer, *, backtick: bool = ...) -> bytes: ...
|
||||
|
||||
else:
|
||||
def b2a_uu(__data: ReadableBuffer) -> bytes: ...
|
||||
def b2a_uu(__data: ReadableBuffer, *, backtick: bool = ...) -> bytes: ...
|
||||
|
||||
if sys.version_info >= (3, 11):
|
||||
def a2b_base64(__data: _AsciiBuffer, *, strict_mode: bool = ...) -> bytes: ...
|
||||
|
||||
Reference in New Issue
Block a user