mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
8 lines
124 B
Python
8 lines
124 B
Python
import sys
|
|
from sys import version
|
|
|
|
version < "3"
|
|
sys.version < "3"
|
|
sys.version <= "3"
|
|
sys.version > "3"
|
|
sys.version >= "3"
|