From 1711b2c1984b2f871fe12c9c14fd7a0b42d32987 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Wed, 20 Mar 2024 15:26:59 -0400 Subject: [PATCH] Need to include names from test.support for py312 compat. --- tests/compat/py39.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/compat/py39.py b/tests/compat/py39.py index 5fe61c39..16c8b574 100644 --- a/tests/compat/py39.py +++ b/tests/compat/py39.py @@ -4,4 +4,6 @@ os_helper = try_import('os_helper') or from_test_support( 'FS_NONASCII', 'skip_unless_symlink' ) -import_helper = try_import('import_helper') or from_test_support() +import_helper = try_import('import_helper') or from_test_support( + 'modules_setup', 'modules_cleanup' +)