Message 62146 - Python tracker

Message62146

Author facundobatista
Recipients facundobatista, zde
Date 2008-02-07.12:37:49
SpamBayes Score 0.003686857
Marked as misclassified No
Message-id <1202387930.13.0.51405170311.issue2028@psf.upfronthosting.co.za>
In-reply-to
Content
O_TEXT is not obsolete, as the behaviour is different even in a win2k.

>>> a = open("ubuntu-6.06.1-server-i386.iso")
>>> len(a.read())
46424
>>> a = open("ubuntu-6.06.1-server-i386.iso", "rb")
>>> len(a.read())
453132288

I agree that the default should be Binary. Note that this would break
too much in Py2, so if happens it will need to be done in Py3.

BTW, I don't know if this was already discussed, approved, rejected, etc.
History
Date User Action Args
2008-02-07 12:38:50facundobatistasetspambayes_score: 0.00368686 -> 0.003686857
recipients: + facundobatista, zde
2008-02-07 12:38:50facundobatistasetspambayes_score: 0.00368686 -> 0.00368686
messageid: <1202387930.13.0.51405170311.issue2028@psf.upfronthosting.co.za>
2008-02-07 12:37:49facundobatistalinkissue2028 messages
2008-02-07 12:37:49facundobatistacreate