/usr/lib/python3/dist-packages/kivy/compat.py is in python3-kivy 1.9.0-3build1.
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 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | '''
Compatibility module for Python 2.7 and > 3.3
=============================================
'''
__all__ = ('PY2', 'string_types', 'queue', 'iterkeys',
'itervalues', 'iteritems')
import sys
try:
import queue
except ImportError:
import Queue as queue
#: True if Python 2 intepreter is used
PY2 = sys.version_info[0] == 2
#: String types that can be used for checking if a object is a string
string_types = None
text_type = None
if PY2:
string_types = basestring
text_type = unicode
else:
string_types = text_type = str
#: unichr is just chr in py3, since all strings are unicode
if PY2:
unichr = unichr
else:
unichr = chr
if PY2:
iterkeys = lambda d: d.iterkeys()
itervalues = lambda d: d.itervalues()
iteritems = lambda d: d.iteritems()
else:
iterkeys = lambda d: iter(d.keys())
itervalues = lambda d: iter(d.values())
iteritems = lambda d: iter(d.items())
|