Upload of binary files
Levente Sandor
sandorlevi at yahoo.com
Wed Mar 12 19:53:25 EST 2003
More information about the Python-list mailing list
Wed Mar 12 19:53:25 EST 2003
- Previous message (by thread): Upload of binary files
- Next message (by thread): Upload of binary files
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
"Peter Mott" <peter.mott at btconnect.com> wrote in message news:<b4nul3$7d2$1 at knossos.btinternet.com>... > I am having problems with uploading binary files. I have searched the [...] > while 1: > line = fileinfo.file.readline() [...] It is _absolutely not_ a good idea to use the readline() method on binary files. Use the read() method instead, it should work. ---- levi
- Previous message (by thread): Upload of binary files
- Next message (by thread): Upload of binary files
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list