From: Martin v. Löwis Date: Tue, 31 Dec 2002 18:05:15 +0000 (+0000) Subject: Remove bogus test; the master is not a terminal on Solaris and HP-UX. X-Git-Tag: v2.3c1~2699 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=64aa5f6982da690a35d2c52e4ae4b9452737265f;p=python Remove bogus test; the master is not a terminal on Solaris and HP-UX. --- diff --git a/Lib/test/test_openpty.py b/Lib/test/test_openpty.py index 858c9ea4db..a8b8550c3c 100644 --- a/Lib/test/test_openpty.py +++ b/Lib/test/test_openpty.py @@ -12,8 +12,6 @@ try: except AttributeError: raise TestSkipped, "No openpty() available." -if not os.isatty(master): - raise TestFailed, "Master-end of pty is not a terminal." if not os.isatty(slave): raise TestFailed, "Slave-end of pty is not a terminal."