mirror of
https://github.com/python/cpython.git
synced 2025-11-03 03:22:27 +00:00
fixed test_imaplib failure on Win
This commit is contained in:
parent
407b3bd89b
commit
b8f02b5a5f
1 changed files with 5 additions and 1 deletions
|
|
@ -1027,12 +1027,16 @@ def run_with_locale(catstr, *locales):
|
||||||
def run_with_tz(tz):
|
def run_with_tz(tz):
|
||||||
def decorator(func):
|
def decorator(func):
|
||||||
def inner(*args, **kwds):
|
def inner(*args, **kwds):
|
||||||
|
try:
|
||||||
|
tzset = time.tzset
|
||||||
|
except AttributeError:
|
||||||
|
raise unittest.SkipTest("tzset required")
|
||||||
if 'TZ' in os.environ:
|
if 'TZ' in os.environ:
|
||||||
orig_tz = os.environ['TZ']
|
orig_tz = os.environ['TZ']
|
||||||
else:
|
else:
|
||||||
orig_tz = None
|
orig_tz = None
|
||||||
os.environ['TZ'] = tz
|
os.environ['TZ'] = tz
|
||||||
time.tzset()
|
tzset()
|
||||||
|
|
||||||
# now run the function, resetting the tz on exceptions
|
# now run the function, resetting the tz on exceptions
|
||||||
try:
|
try:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue