diff options
| -rw-r--r-- | Lib/test/test_import/__init__.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/test/test_import/__init__.py b/Lib/test/test_import/__init__.py index 4726619..469d1fb 100644 --- a/Lib/test/test_import/__init__.py +++ b/Lib/test/test_import/__init__.py @@ -159,9 +159,8 @@ def requires_singlephase_init(meth): finally: restore__testsinglephase() meth = cpython_only(meth) - # gh-117649: free-threaded build does not currently support single-phase - # init modules in subinterpreters. - meth = requires_gil_enabled(meth) + msg = "gh-117694: free-threaded build does not currently support single-phase init modules in sub-interpreters" + meth = requires_gil_enabled(msg)(meth) return unittest.skipIf(_testsinglephase is None, 'test requires _testsinglephase module')(meth) |
