From c2a45517a8fd664b3b80f23e4ab808fbb3359376 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Mon, 27 Oct 2025 08:50:47 +0100 Subject: [PATCH] Add extra no-op tests to test_import.SubinterpImportTests --- Lib/test/test_import/__init__.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/Lib/test/test_import/__init__.py b/Lib/test/test_import/__init__.py index b71a36ec2f7aab..febfb96a53e46c 100644 --- a/Lib/test/test_import/__init__.py +++ b/Lib/test/test_import/__init__.py @@ -2467,6 +2467,30 @@ def test_multi_init_extension_per_interpreter_gil_compat(self): self.check_compatible_here( modname, filename, strict=False, isolated=False) + def test_extra_A(self): + return + + def test_extra_B(self): + return + + def test_extra_C(self): + return + + def test_extra_D(self): + return + + def test_extra_E(self): + return + + def test_extra_F(self): + return + + def test_extra_G(self): + return + + def test_extra_H(self): + return + @unittest.skipIf(_testinternalcapi is None, "requires _testinternalcapi") def test_python_compat(self): module = 'threading'