diff options
author | Hai Shi <shihai1992@gmail.com> | 2020-06-25 10:38:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-25 10:38:51 (GMT) |
commit | f7ba40b505989495c3585ed782070bdae56330ad (patch) | |
tree | b1b913a2100ba07c817e2c5d92b1b1537ab0f300 /Lib/test/test_decimal.py | |
parent | 5f190d2cc60cd82a604cbffb58b6ca8f40350a7a (diff) | |
download | cpython-f7ba40b505989495c3585ed782070bdae56330ad.zip cpython-f7ba40b505989495c3585ed782070bdae56330ad.tar.gz cpython-f7ba40b505989495c3585ed782070bdae56330ad.tar.bz2 |
bpo-40275: Use new test.support helper submodules in tests (GH-20849)
Diffstat (limited to 'Lib/test/test_decimal.py')
-rw-r--r-- | Lib/test/test_decimal.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_decimal.py b/Lib/test/test_decimal.py index ed483a4..716e6eb 100644 --- a/Lib/test/test_decimal.py +++ b/Lib/test/test_decimal.py @@ -34,8 +34,9 @@ import numbers import locale from test.support import (run_unittest, run_doctest, is_resource_enabled, requires_IEEE_754, requires_docstrings) -from test.support import (import_fresh_module, TestFailed, +from test.support import (TestFailed, run_with_locale, cpython_only) +from test.support.import_helper import import_fresh_module import random import inspect import threading |