Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
7ce1c6fb579a01bb184224a10019039fde9c8eaf
/
.
/
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
)