[issue1239] openpty does not give bidirectional pipe

2008-01-11 Thread Christian Heimes
Changes by Christian Heimes: -- resolution: -> invalid status: open -> closed __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing li

[issue1239] openpty does not give bidirectional pipe

2007-10-05 Thread Matti Katila
Matti Katila added the comment: Not a real issue - it's a standard behaviour of tty. Fix is to set -icanon: m,s = os.openpty() s = os.ttyname(s) os.system( 'stty cs8 -icanon -echo < %s' % s ) see, http://www.eulogika.net/download/eutalk_20040302/pymouse.html The issue can be closed and docume

[issue1239] openpty does not give bidirectional pipe

2007-10-05 Thread Matti Katila
Matti Katila added the comment: Linux Programmer’s Manual for ptmx and pts - pseudo-terminal master and slave states: "Data written to the slave is presented on the master descriptor as input. Data written to the master is presented to the slave as input." The data can be read from slave to

[issue1239] openpty does not give bidirectional pipe

2007-10-05 Thread Matti Katila
New submission from Matti Katila: http://rafb.net/p/t8cqSt71.html -- nosy: +mudyc __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing

[issue1239] openpty does not give bidirectional pipe

2007-10-05 Thread Matti Katila
Changes by Matti Katila: -- components: None severity: normal status: open title: openpty does not give bidirectional pipe type: behavior versions: Python 2.5 __ Tracker <[EMAIL PROTECTED]> __