Server IP : 15.235.198.142 / Your IP : 216.73.216.63 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/dbus/ |
Upload File : |
# Python 2 / Python 3 compatibility helpers. # Copyright 2011 Barry Warsaw # Copyright 2021 Collabora Ltd. # SPDX-License-Identifier: MIT import sys is_py3 = True is_py2 = False if sys.version_info.major < 3: raise AssertionError( 'Python 2 has reached end-of-life, and dbus-python no longer ' 'supports it.' )