mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-08 14:26:17 +08:00
16ae4c6120
See discussion in #2491 Co-authored-by: Ivan Levkivskyi <ilevkivskyi@dropbox.com>
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: ...
|