diff options
author | Dong-hee Na <donghee.na@python.org> | 2021-10-01 13:49:46 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-01 22:49:46 +0900 |
commit | 9eed75fde226cec5a02301cfac1dc8039b5a183e (patch) | |
tree | d769d9668da19be5cb8397d6cd8c9c8beb4c2bb8 /Modules/_decimal/tests/formathelper.py | |
parent | 9ce0f48e918860ffa32751a85b0fe7967723e2e3 (diff) | |
download | cpython-git-9eed75fde226cec5a02301cfac1dc8039b5a183e.tar.gz |
bpo-45332: Fix broken Decimal test and benchmark (GH-28680)
Diffstat (limited to 'Modules/_decimal/tests/formathelper.py')
-rw-r--r-- | Modules/_decimal/tests/formathelper.py | 2 |
1 files changed, 1 insertions, 1 deletions
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']) |