mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
9 lines
180 B
Python
9 lines
180 B
Python
import sys
|
|
from typing import List
|
|
|
|
if sys.version_info < (3, 7):
|
|
PY34: bool
|
|
PY35: bool
|
|
PY352: bool
|
|
def flatten_list_bytes(list_of_data: List[bytes]) -> bytes: ...
|