Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
a608d2d5a7f1aabe9bcbfc220135c5e126189390
/
.
/
Lib
/
asyncio
/
compat.py
blob: 520ec6870c8882e1eb81185893962f2227a11aa1 [
file
] [
log
] [
blame
]
"""Compatibility helpers for the different Python versions."""
import
sys
PY35
=
sys
.
version_info
>=
(
3
,
5
)
PY352
=
sys
.
version_info
>=
(
3
,
5
,
2
)