Coverage for /wheeldirectory/casa-6.7.2-31-py3.12.el8/lib/py/lib/python3.12/site-packages/casatools/__cerberus__/platform.py: 71%
7 statements
« prev ^ index » next coverage.py v7.10.1, created at 2025-07-31 10:44 +0000
« prev ^ index » next coverage.py v7.10.1, created at 2025-07-31 10:44 +0000
1""" Platform-dependent objects """
3import sys
6PYTHON_VERSION = float(sys.version_info[0]) + float(sys.version_info[1]) / 10
9if PYTHON_VERSION < 3:
10 _str_type = basestring # noqa: F821
11 _int_types = (int, long) # noqa: F821
12else:
13 _str_type = str
14 _int_types = (int,)