ubuntu-22.04.3-desktop-amd64/casper/filesystem/usr/lib/python3/dist-packages/dbus/_compat.py

8 lines
148 B
Python

# Python 2 / Python 3 compatibility helpers.
# SPDX-License-Identifier: MIT
import sys
is_py3 = (sys.version_info.major == 3)
is_py2 = not is_py3