diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2021-09-15 20:15:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-15 20:15:32 (GMT) |
commit | 3814e2036d96e2b6c69afce61926bb0a2a34d2d9 (patch) | |
tree | 07370122389b21359fabbd658bc0acafde69d127 /Lib/ctypes/test | |
parent | d081eab7df176453c9834b852a579e1ada0354b2 (diff) | |
download | cpython-3814e2036d96e2b6c69afce61926bb0a2a34d2d9.zip cpython-3814e2036d96e2b6c69afce61926bb0a2a34d2d9.tar.gz cpython-3814e2036d96e2b6c69afce61926bb0a2a34d2d9.tar.bz2 |
bpo-45019: Clean up the frozen __hello__ module. (gh-28374)
Here's one more small cleanup that should have been in PR gh-28319. We eliminate stdout side-effects from importing the frozen __hello__ module, and update tests accordingly. We also move the module's source file into Lib/ from Toos/freeze/flag.py.
https://bugs.python.org/issue45019
Diffstat (limited to 'Lib/ctypes/test')
-rw-r--r-- | Lib/ctypes/test/test_values.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ctypes/test/test_values.py b/Lib/ctypes/test/test_values.py index 4f525cd..96521fd 100644 --- a/Lib/ctypes/test/test_values.py +++ b/Lib/ctypes/test/test_values.py @@ -7,7 +7,7 @@ import importlib.util import unittest import sys from ctypes import * -from test.support import import_helper, captured_stdout +from test.support import import_helper import _ctypes_test |