EVOLUTION-MANAGER
Edit File: compat.py
# 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