/usr/lib/python3/dist-packages/pykka/compat.py is in python3-pykka 1.2.1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | import sys
PY2 = sys.version_info[0] == 2
PY3 = sys.version_info[0] == 3
if PY2:
import Queue as queue # noqa
string_types = basestring # noqa
def reraise(tp, value, tb=None):
exec('raise tp, value, tb')
else:
import queue # noqa
string_types = (str,)
def reraise(tp, value, tb=None):
if value is None:
value = tp()
if value.__traceback__ is not tb:
raise value.with_traceback(tb)
raise value
|