mirror of
https://github.com/python/cpython.git
synced 2025-07-12 13:55:34 +00:00
6 lines
148 B
Python
6 lines
148 B
Python
"""Compatibility helpers for the different Python versions."""
|
|
|
|
import sys
|
|
|
|
PY35 = sys.version_info >= (3, 5)
|
|
PY352 = sys.version_info >= (3, 5, 2)
|