summaryrefslogtreecommitdiff
path: root/dbus/_compat.py
blob: 62bbe2860da16228055ec6f800924c4e1d177e70 (plain)
1
2
3
4
5
6
# Python 2 / Python 3 compatibility helpers.

import sys

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