mirror of
https://github.com/python/cpython.git
synced 2025-11-02 03:01:58 +00:00
Issue #10941: Fix imaplib.Internaldate2tuple to produce correct result near
the DST transition. Patch by Joe Peterson.
This commit is contained in:
commit
5a38f80f9c
5 changed files with 45 additions and 15 deletions
|
|
@ -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):
|
||||
|
|
@ -1099,6 +1099,35 @@ def run_with_locale(catstr, *locales):
|
|||
return inner
|
||||
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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue