Skip to content

Commit de56204

Browse files
committed
Fix test_embed.
1 parent fc967a2 commit de56204

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/test/test_embed.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1827,10 +1827,11 @@ def test_init_main_interpreter_settings(self):
18271827
DAEMON_THREADS = 1<<11
18281828
FORK = 1<<15
18291829
EXEC = 1<<16
1830+
SIGNALS = 1<<17
18301831
expected = {
18311832
# All optional features should be enabled.
18321833
'feature_flags':
1833-
OBMALLOC | FORK | EXEC | THREADS | DAEMON_THREADS,
1834+
OBMALLOC | FORK | EXEC | THREADS | DAEMON_THREADS | SIGNALS,
18341835
'own_gil': True,
18351836
}
18361837
out, err = self.run_embedded_interpreter(

0 commit comments

Comments
 (0)