Package dbus :: Module _compat
[hide private]
[frames] | no frames]

Source Code for Module dbus._compat

1  # Python 2 / Python 3 compatibility helpers. 
2   
3  import sys 
4   
5  is_py3 = (sys.version_info.major == 3) 
6  is_py2 = not is_py3 
7