[issue4386] A binary file should show "b" in its mode

2008-11-21 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Amaury, thanks for getting the tests to pass. Applied in r67325. -- resolution: -> accepted status: open -> closed ___ Python tracker <[EMAIL PROTECTED]>

[issue4386] A binary file should show "b" in its mode

2008-11-21 Thread Amaury Forgeot d'Arc
New submission from Amaury Forgeot d'Arc <[EMAIL PROTECTED]>: The changes following r67300 introduced the .mode and .name attributes on all the file-like objects returned by the open() function. This also changed the mode returned by a file opened in binary mode: it was "rb", now it is "r". Th