def tcflow(space, w_fd, action): fd = space.c_filedescriptor_w(w_fd) try: rtermios.tcflow(fd, action) except OSError, e: raise convert_error(space, e)
def runs_tcall(): rtermios.tcsendbreak(2, 0) rtermios.tcdrain(2) rtermios.tcflush(2, rtermios.TCIOFLUSH) rtermios.tcflow(2, rtermios.TCOON) print "ok"