2013-04-05 01:32:56 +02:00
|
|
|
# Copyright (c) 2013 Paul Tagliamonte <paultag@debian.org>
|
2013-04-21 00:17:30 +02:00
|
|
|
# Copyright (c) 2013 Julien Danjou <julien@danjou.info>
|
2013-12-29 11:57:48 +01:00
|
|
|
# Copyright (c) 2013 Berker Peksag <berker.peksag@gmail.com>
|
2013-04-05 01:32:56 +02:00
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
# copy of this software and associated documentation files (the "Software"),
|
|
|
|
# to deal in the Software without restriction, including without limitation
|
|
|
|
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
# and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
# Software is furnished to do so, subject to the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be included in
|
|
|
|
# all copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
# DEALINGS IN THE SOFTWARE.
|
|
|
|
|
2013-09-24 09:27:30 +02:00
|
|
|
try:
|
|
|
|
import __builtin__ as builtins
|
|
|
|
except ImportError:
|
|
|
|
import builtins # NOQA
|
2013-12-29 11:57:48 +01:00
|
|
|
try:
|
|
|
|
from py_compile import MAGIC, wr_long
|
|
|
|
except ImportError:
|
|
|
|
# py_compile.MAGIC removed and imp.get_magic() deprecated in Python 3.4
|
|
|
|
from importlib.util import MAGIC_NUMBER as MAGIC # NOQA
|
|
|
|
|
|
|
|
def wr_long(f, x):
|
|
|
|
"""Internal; write a 32-bit int to a file in little-endian order."""
|
|
|
|
f.write(bytes([x & 0xff,
|
|
|
|
(x >> 8) & 0xff,
|
|
|
|
(x >> 16) & 0xff,
|
|
|
|
(x >> 24) & 0xff]))
|
2013-04-12 20:39:45 +02:00
|
|
|
import sys
|
|
|
|
|
2013-09-29 14:53:44 +02:00
|
|
|
PY3 = sys.version_info[0] >= 3
|
2013-12-29 11:57:48 +01:00
|
|
|
PY33 = sys.version_info[0] >= 3 and sys.version_info[1] >= 3
|
2013-04-12 20:39:45 +02:00
|
|
|
|
2013-09-24 09:27:30 +02:00
|
|
|
if PY3:
|
2013-04-12 20:39:45 +02:00
|
|
|
str_type = str
|
|
|
|
else:
|
2013-08-24 17:03:11 +02:00
|
|
|
str_type = unicode # NOQA
|
2013-09-24 09:27:30 +02:00
|
|
|
|
|
|
|
if PY3:
|
|
|
|
long_type = int
|
|
|
|
else:
|
|
|
|
long_type = long # NOQA
|