You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: graalpython/com.oracle.graal.python.test/src/tests/test_repl.py
+36-27Lines changed: 36 additions & 27 deletions
Original file line number
Diff line number
Diff line change
@@ -37,18 +37,19 @@
37
37
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
38
38
# SOFTWARE.
39
39
40
-
importsys
40
+
importos
41
41
importplatform
42
+
importre
43
+
importselect
44
+
importsubprocess
45
+
importsys
46
+
importtempfile
42
47
importunittest
48
+
fromdataclassesimportdataclass
49
+
fromtextwrapimportdedent
43
50
44
-
if (sys.platform!='win32'and (sys.platform!='linux'orplatform.machine() !='aarch64')) and (sys.implementation.name!='graalpy'or__graalpython__.posix_module_backend() !='java'):
45
-
importos
46
-
importre
47
-
importselect
48
-
importsubprocess
49
-
importtempfile
50
-
importtermios
51
-
fromtextwrapimportdedent
51
+
if (sys.platform!='win32'and (sys.platform!='linux'orplatform.machine() !='aarch64')) and (
0 commit comments