/usr/lib/python2.7/dist-packages/cairocffi/compat.py is in python-cairocffi 0.5.4-1.
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 41 42 43 44 45 46 47 48 49 | # coding: utf8
"""
cairocffi.compat
~~~~~~~~~~~~~~~~
Compatibility module for various Python versions.
:copyright: Copyright 2013 by Simon Sapin
:license: BSD, see LICENSE for details.
"""
import sys
try:
FileNotFoundError = FileNotFoundError
except NameError:
FileNotFoundError = IOError
try:
callable = callable
except NameError:
from collections import Callable
from cffi import api
api.callable = callable = lambda x: isinstance(x, Callable)
try:
xrange = xrange
except NameError:
xrange = range
if sys.version_info >= (3,):
u = lambda x: x
else:
u = lambda x: x.decode('utf8')
if sys.byteorder == 'little':
def pixel(argb):
"""Convert a 4-byte ARGB string to native-endian."""
return argb[::-1]
else:
def pixel(argb):
"""Convert a 4-byte ARGB string to native-endian."""
return argb
|