mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
Support version checks for import statements. GitOrigin-RevId: df52f60574962e1bc222121aadc082683de0a869
8 lines
165 B
Python
8 lines
165 B
Python
import sys
|
|
|
|
|
|
if sys.version_info >= (3,5):
|
|
import math
|
|
import cmath as cm
|
|
from string import digits, hexdigits as imported_name
|
|
from decimal import * |