microproduct/atmosphericDelay/ISCEApp/site-packages/dbus/_compat.py

8 lines
148 B
Python
Raw Normal View History

2023-08-28 10:17:29 +00:00
# Python 2 / Python 3 compatibility helpers.
# SPDX-License-Identifier: MIT
import sys
is_py3 = (sys.version_info.major == 3)
is_py2 = not is_py3