Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #98510
| From | Marko Rauhamaa <marko@pacujo.net> |
|---|---|
| Newsgroups | comp.lang.python |
| Subject | Re: using binary in python |
| Date | 2015-11-09 12:56 +0200 |
| Organization | A noiseless patient Spider |
| Message-ID | <87d1vjigqf.fsf@elektro.pacujo.net> (permalink) |
| References | <20151108212706.GA29701@z-sverige.nu> <mailman.168.1447065689.16136.python-list@python.org> |
Michiel Overtoom <motoom@xs4all.nl>: > If you're on Windows, don't forget to include a 'b' in the mode string > of the open() call, otherwise Python will assume that you're opening a > text file. Python has brought that blessing to other operating systems, as well. One of the principal UNIX innovations was to see files as simple byte sequences. The operating system would place no semantics on the meaning or structure of the bytes. Python presents a different concept of a file; Python files are either text files or binary files. The dichotomy is built on top of the UNIX file system. However, the Python model "leaks" in that nothing prevents you from opening a binary file as a text file or vice versa. Marko
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Re: using binary in python Michiel Overtoom <motoom@xs4all.nl> - 2015-11-09 11:40 +0100
Re: using binary in python Marko Rauhamaa <marko@pacujo.net> - 2015-11-09 12:56 +0200
Re: using binary in python Chris Angelico <rosuav@gmail.com> - 2015-11-09 22:04 +1100
Re: using binary in python Marko Rauhamaa <marko@pacujo.net> - 2015-11-09 15:25 +0200
Re: using binary in python Chris Angelico <rosuav@gmail.com> - 2015-11-10 00:52 +1100
Re: using binary in python Marko Rauhamaa <marko@pacujo.net> - 2015-11-09 16:32 +0200
Re: using binary in python Chris Angelico <rosuav@gmail.com> - 2015-11-10 02:17 +1100
Re: using binary in python Marko Rauhamaa <marko@pacujo.net> - 2015-11-09 17:46 +0200
Re: using binary in python Chris Angelico <rosuav@gmail.com> - 2015-11-10 02:57 +1100
Re: using binary in python Marko Rauhamaa <marko@pacujo.net> - 2015-11-09 18:17 +0200
csiph-web