summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na@python.org>2021-10-01 13:49:46 +0000
committerGitHub <noreply@github.com>2021-10-01 22:49:46 +0900
commit9eed75fde226cec5a02301cfac1dc8039b5a183e (patch)
treed769d9668da19be5cb8397d6cd8c9c8beb4c2bb8
parent9ce0f48e918860ffa32751a85b0fe7967723e2e3 (diff)
downloadcpython-git-9eed75fde226cec5a02301cfac1dc8039b5a183e.tar.gz
bpo-45332: Fix broken Decimal test and benchmark (GH-28680)
-rw-r--r--Modules/_decimal/tests/bench.py5
-rw-r--r--Modules/_decimal/tests/deccheck.py2
-rw-r--r--Modules/_decimal/tests/formathelper.py2
3 files changed, 3 insertions, 6 deletions
diff --git a/Modules/_decimal/tests/bench.py b/Modules/_decimal/tests/bench.py
index 3726db194e..24e091b688 100644
--- a/Modules/_decimal/tests/bench.py
+++ b/Modules/_decimal/tests/bench.py
@@ -7,10 +7,7 @@
import time
-try:
- from test.support import import_fresh_module
-except ImportError:
- from test.test_support import import_fresh_module
+from test.support.import_helper import import_fresh_module
C = import_fresh_module('decimal', fresh=['_decimal'])
P = import_fresh_module('decimal', blocked=['_decimal'])
diff --git a/Modules/_decimal/tests/deccheck.py b/Modules/_decimal/tests/deccheck.py
index 98ecd502c0..edf753f370 100644
--- a/Modules/_decimal/tests/deccheck.py
+++ b/Modules/_decimal/tests/deccheck.py
@@ -47,7 +47,7 @@ from subprocess import PIPE, STDOUT
from queue import Queue, Empty
from threading import Thread, Event, Lock
-from test.support import import_fresh_module
+from test.support.import_helper import import_fresh_module
from randdec import randfloat, all_unary, all_binary, all_ternary
from randdec import unary_optarg, binary_optarg, ternary_optarg
from formathelper import rand_format, rand_locale
diff --git a/Modules/_decimal/tests/formathelper.py b/Modules/_decimal/tests/formathelper.py
index 19b2aad4a5..c3daacfb7b 100644
--- a/Modules/_decimal/tests/formathelper.py
+++ b/Modules/_decimal/tests/formathelper.py
@@ -31,7 +31,7 @@
import os, sys, locale, random
import platform, subprocess
-from test.support import import_fresh_module
+from test.support.import_helper import import_fresh_module
from distutils.spawn import find_executable
C = import_fresh_module('decimal', fresh=['_decimal'])