Message7305

Author Arfrever
Recipients Arfrever
Date 2012-07-02.00:17:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1341188245.34.0.327587678094.issue1945@psf.upfronthosting.co.za>
In-reply-to
Content
CPython:

$ LC_ALL="en_US.UTF-8" python2.7 -c 'open("/dev/tty", "a")'
$ LC_ALL="en_US.UTF-8" python2.7 -c 'open("/dev/tty", "w")'
$

Jython:

$ LC_ALL="en_US.UTF-8" jython2.7 -c 'open("/dev/tty", "a")'
Traceback (most recent call last):
  File "<string>", line 1, in <module>
IOError: Illegal seek
$ LC_ALL="en_US.UTF-8" jython2.7 -c 'open("/dev/tty", "w")'
Traceback (most recent call last):
  File "<string>", line 1, in <module>
IOError: Illegal seek
$
History
Date User Action Args
2012-07-02 00:17:25Arfreversetrecipients: + Arfrever
2012-07-02 00:17:25Arfreversetmessageid: <1341188245.34.0.327587678094.issue1945@psf.upfronthosting.co.za>
2012-07-02 00:17:25Arfreverlinkissue1945 messages
2012-07-02 00:17:24Arfrevercreate