diff options
author | Raymond Hettinger <python@rcn.com> | 2012-04-29 21:57:05 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2012-04-29 21:57:05 (GMT) |
commit | a6df2ee7d084f830f100a5bd563005389d7d20c4 (patch) | |
tree | aa895645c077eef4653abac633cf5e35ec4f306d /Lib/test/support.py | |
parent | 9f0ab9f5649b9b6ee54a023e83417f244b4665a0 (diff) | |
parent | 57404891a05fe1d5a70fc55ae84e75fe12fc7535 (diff) | |
download | cpython-a6df2ee7d084f830f100a5bd563005389d7d20c4.zip cpython-a6df2ee7d084f830f100a5bd563005389d7d20c4.tar.gz cpython-a6df2ee7d084f830f100a5bd563005389d7d20c4.tar.bz2 |
merge
Diffstat (limited to 'Lib/test/support.py')
-rw-r--r-- | Lib/test/support.py | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/Lib/test/support.py b/Lib/test/support.py index a1ab09c..a7d0833 100644 --- a/Lib/test/support.py +++ b/Lib/test/support.py @@ -57,7 +57,7 @@ __all__ = [ "get_attribute", "swap_item", "swap_attr", "requires_IEEE_754", "TestHandler", "Matcher", "can_symlink", "skip_unless_symlink", "import_fresh_module", "requires_zlib", "PIPE_MAX_SIZE", "failfast", - "anticipate_failure" + "anticipate_failure", "run_with_tz" ] class Error(Exception): @@ -1100,6 +1100,35 @@ def run_with_locale(catstr, *locales): return decorator #======================================================================= +# Decorator for running a function in a specific timezone, correctly +# resetting it afterwards. + +def run_with_tz(tz): + def decorator(func): + def inner(*args, **kwds): + if 'TZ' in os.environ: + orig_tz = os.environ['TZ'] + else: + orig_tz = None + os.environ['TZ'] = tz + time.tzset() + + # now run the function, resetting the tz on exceptions + try: + return func(*args, **kwds) + finally: + if orig_tz == None: + del os.environ['TZ'] + else: + os.environ['TZ'] = orig_tz + time.tzset() + + inner.__name__ = func.__name__ + inner.__doc__ = func.__doc__ + return inner + return decorator + +#======================================================================= # Big-memory-test support. Separate from 'resources' because memory use # should be configurable. |