Skip to content

Commit 7b84abd

Browse files
committed
Fix test_import.
1 parent de56204 commit 7b84abd

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Lib/test/test_import/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2194,9 +2194,11 @@ class SubinterpImportTests(unittest.TestCase):
21942194
ISOLATED = dict(
21952195
use_main_obmalloc=False,
21962196
gil=2,
2197+
can_handle_signals=True,
21972198
)
21982199
NOT_ISOLATED = {k: not v for k, v in ISOLATED.items()}
21992200
NOT_ISOLATED['gil'] = 1
2201+
NOT_ISOLATED['can_handle_signals'] = False
22002202

22012203
@unittest.skipUnless(hasattr(os, "pipe"), "requires os.pipe()")
22022204
def pipe(self):

0 commit comments

Comments
 (0)