HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //snap/core24/1151/usr/lib/python3/dist-packages/dbus/_compat.py
# 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.'
    )