We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ae71ad commit aaff7ceCopy full SHA for aaff7ce
Lib/test/test_pty.py
@@ -1,8 +1,11 @@
1
from test.support import verbose, reap_children
2
from test.support.import_helper import import_module
3
4
-# Skip these tests if termios is not available
+# Skip these tests if termios or fcntl are not available
5
import_module('termios')
6
+# fcntl is a proxy for not being one of the wasm32 platforms even though we
7
+# don't use this module... a proper check for what crashes those is needed.
8
+import_module("fcntl")
9
10
import errno
11
import os
0 commit comments