X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=bup.git;a=blobdiff_plain;f=lib%2Fbup%2Fcompat.py;h=397920a3d333ee8d8b27effab7e90abdd84c074e;hp=7b20ebccfe5afaa7e0ea968f7e771b3c81aac7e7;hb=20dc106a111db4822ccac34688fa8eb5ae2bfc48;hpb=aac44c48f74679f9f14cd1e98b7e117fe8a61de0 diff --git a/lib/bup/compat.py b/lib/bup/compat.py index 7b20ebc..397920a 100644 --- a/lib/bup/compat.py +++ b/lib/bup/compat.py @@ -1,8 +1,9 @@ from __future__ import absolute_import, print_function from array import array +from binascii import hexlify from traceback import print_exception -import sys +import os, sys # Please see CODINGSTYLE for important exception handling guidelines # and the rationale behind add_ex_tb(), add_ex_ctx(), etc. @@ -28,6 +29,14 @@ if py3: from shlex import quote range = range str_type = str + int_types = (int,) + + def hexstr(b): + """Return hex string (not bytes as with hexlify) representation of b.""" + return b.hex() + + def reraise(ex): + raise ex.with_traceback(sys.exc_info()[2]) def add_ex_tb(ex): """Do nothing (already handled by Python 3 infrastructure).""" @@ -68,8 +77,14 @@ else: # Python 2 from pipes import quote from os import environ + + from bup.py2raise import reraise + range = xrange str_type = basestring + int_types = (int, long) + + hexstr = hexlify def add_ex_tb(ex): """Add a traceback to ex if it doesn't already have one. Return ex. @@ -130,6 +145,25 @@ else: # Python 2 assert type(y) in (bytes, buffer) return buffer(x) + y + +def restore_lc_env(): + # Once we're up and running with iso-8859-1, undo the bup-python + # LC_CTYPE hackery, so we don't affect unrelated subprocesses. + bup_lc_all = environ.get(b'BUP_LC_ALL') + if bup_lc_all: + del environ[b'LC_COLLATE'] + del environ[b'LC_CTYPE'] + del environ[b'LC_MONETARY'] + del environ[b'LC_NUMERIC'] + del environ[b'LC_TIME'] + del environ[b'LC_MESSAGES'] + del environ[b'LC_MESSAGES'] + environ[b'LC_ALL'] = bup_lc_all + return + bup_lc_ctype = environ.get(b'BUP_LC_CTYPE') + if bup_lc_ctype: + environ[b'LC_CTYPE'] = bup_lc_ctype + def wrap_main(main): """Run main() and raise a SystemExit with the return value if it returns, pass along any SystemExit it raises, convert