summaryrefslogtreecommitdiff
path: root/dbus/_compat.py
blob: 5417ae835b39e76d240ec4e83a078ca21f75f099 (plain)
1
2
3
4
5
6
7
# Python 2 / Python 3 compatibility helpers.
# SPDX-License-Identifier: MIT

import sys

is_py3 = (sys.version_info.major == 3)
is_py2 = not is_py3