Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: cf60858b55a1ce8d99daa301f7aad9a7ffeb0bb7 authored by Martin v. Löwis on 28 May 2011, 11:56:22 UTC
r88824: Prepare for 2.5.6c1.
Tip revision: cf60858
test_openpty.py
# Test to see if openpty works. (But don't worry if it isn't available.)

import os
from test.test_support import verbose, TestFailed, TestSkipped

try:
    if verbose:
        print "Calling os.openpty()"
    master, slave = os.openpty()
    if verbose:
        print "(master, slave) = (%d, %d)"%(master, slave)
except AttributeError:
    raise TestSkipped, "No openpty() available."

if not os.isatty(slave):
    raise TestFailed, "Slave-end of pty is not a terminal."

os.write(slave, 'Ping!')
print os.read(master, 1024)
back to top