Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #26030

Re: Python 2.6 StreamReader.readline()

Newsgroups comp.lang.python
Date 2012-07-25 03:26 -0700
References <65c7dc3b-3dce-45f2-981b-9c8171418f09@googlegroups.com> <d6f4e9-v1r.ln1@satorlaser.homedns.org> <mailman.2563.1343208196.4697.python-list@python.org>
Subject Re: Python 2.6 StreamReader.readline()
From wxjmfauth@gmail.com
Message-ID <mailman.2564.1343212004.4697.python-list@python.org> (permalink)

Show all headers | View raw


On Wednesday, July 25, 2012 11:02:01 AM UTC+2, Walter Dörwald wrote:
> On 25.07.12 08:09, Ulrich Eckhardt wrote:
> 
> &gt; Am 24.07.2012 17:01, schrieb cpppwner@gmail.com:
> &gt;&gt;      reader = codecs.getreader(encoding)
> &gt;&gt;      lines  =  []
> &gt;&gt;      with open(filename, &#39;rb&#39;) as f:
> &gt;&gt;          lines  = reader(f, &#39;strict&#39;).readlines(keepends=False)
> &gt;&gt;
> &gt;&gt; where encoding == &#39;utf-16-be&#39;
> &gt;&gt; Everything works fine, except that lines[0] is equal to
> &gt;&gt; codecs.BOM_UTF16_BE
> &gt;&gt; Is this behaviour correct, that the BOM is still present?
> &gt;
> &gt; Yes, assuming the first line only contains that BOM. Technically it&#39;s a
> &gt; space character, and why should those be removed?
> 
> If the first &quot;character&quot; in the file is a BOM the file encoding is 
> probably not utf-16-be but utf-16.
> 
> Servus,
>     Walter

The byte order mark, if present, is nothing else than
an encoded 

>>> ud.name('\ufeff')
'ZERO WIDTH NO-BREAK SPACE'

*code point*.

Five "BOM" are possible (Unicode consortium). utf-8-sig, utf-16-be,
utf-16-le, utf-32-be, utf-32-le. The codecs module provide many
aliases.

The fact that utf-16/32 does correspond to -le or to -be may
vary according to the platforms, the compilers, ...

>>> sys.version
'3.2.3 (default, Apr 11 2012, 07:15:24) [MSC v.1500 32 bit
(Intel)]'
>>> codecs.BOM_UTF16_BE
b'\xfe\xff'
>>> codecs.BOM_UTF16_LE
b'\xff\xfe'
>>> codecs.BOM_UTF16
b'\xff\xfe'
>>>

---

As far as I know, Py 2.7 or Py 3.2 never return a "BOM" when
a file is read correctly.

>>> with open('a-utf-16-be.txt', 'r', encoding='utf-16-be') as f:
...     r = f.readlines()
...     for zeile in r:
...         print(zeile.rstrip())
...         
abc
élève
cœur
€uro
>>> 


jmf

Back to comp.lang.python | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

Python 2.6 StreamReader.readline() cpppwner@gmail.com - 2012-07-24 08:01 -0700
  Re: Python 2.6 StreamReader.readline() Ulrich Eckhardt <ulrich.eckhardt@dominolaser.com> - 2012-07-25 08:09 +0200
    Re: Python 2.6 StreamReader.readline() Walter Dörwald <walter@livinglogic.de> - 2012-07-25 11:02 +0200
      Re: Python 2.6 StreamReader.readline() wxjmfauth@gmail.com - 2012-07-25 03:26 -0700
      Re: Python 2.6 StreamReader.readline() wxjmfauth@gmail.com - 2012-07-25 03:26 -0700

csiph-web