Message 62148 - Python tracker

Message62148

Author amaury.forgeotdarc
Recipients amaury.forgeotdarc, facundobatista, zde
Date 2008-02-07.13:01:21
SpamBayes Score 0.06675035
Marked as misclassified No
Message-id <1202389282.25.0.148565100195.issue2028@psf.upfronthosting.co.za>
In-reply-to
Content
> Windows has stopped to use CRLF files
No, there are some places where a text file must be CRLF.
To name a few:
- Notepad
- Visual Studio .sln files.

> Days when majority of "C" codebase actually DID process text files 
> AND CRLF files were used are long over and since Python is NOT 
> "C" it should reflect that.

Actually, python 3.0 goes even further from "C": 
- Python mostly deals with text files
- text files will return (unicode) text data, decoded with a specified
encoding (by default: 7bit ascii)
Many unix programs will break anyway: if they want binary data, they
will have to open files in binary mode.
After that, they will run on Windows with no modification.
History
Date User Action Args
2008-02-07 13:01:22amaury.forgeotdarcsetspambayes_score: 0.0667503 -> 0.06675035
recipients: + amaury.forgeotdarc, facundobatista, zde
2008-02-07 13:01:22amaury.forgeotdarcsetspambayes_score: 0.0667503 -> 0.0667503
messageid: <1202389282.25.0.148565100195.issue2028@psf.upfronthosting.co.za>
2008-02-07 13:01:21amaury.forgeotdarclinkissue2028 messages
2008-02-07 13:01:21amaury.forgeotdarccreate