Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Python > Re: Encoding conundrum

Reply
Thread Tools

Re: Encoding conundrum

 
 
Ian Kelly
Guest
Posts: n/a
 
      11-20-2012
On Tue, Nov 20, 2012 at 2:49 PM, Daniel Klein <> wrote:
> With the assistance of this group I am understanding unicode encoding issues
> much better; especially when handling special characters that are outside of
> the ASCII range. I've got my application working perfectly now
>
> However, I am still confused as to why I can only use one specific encoding.
>
> I've done some research and it appears that I should be able to use any of
> the following codecs with codepoints '\xfc' (chr(252)) '\xfd' (chr(253)) and
> '\xfe' (chr(254)) :


These refer to the characters with *Unicode* codepoints 252, 253, and 254:

>>> unicodedata.name('\xfc')

'LATIN SMALL LETTER U WITH DIAERESIS'
>>> unicodedata.name('\xfd')

'LATIN SMALL LETTER Y WITH ACUTE'
>>> unicodedata.name('\xfe')

'LATIN SMALL LETTER THORN'

> ISO-8859-1 [ note that I'm using this codec on my Linux box ]


For ISO 8859-1, these characters happen to exist and even correspond
to the same ordinals: 252, 253, and 254 (this is by design); so there
is no problem encoding them, and the resulting bytes even happen to
match the codepoints of the characters.

> cp1252


cp1252 is designed after ISO 8859-1 and also has those same three characters:

>>> for char in b'\xfc\xfd\xfe'.decode('cp1252'):

.... print(unicodedata.name(char))
....
LATIN SMALL LETTER U WITH DIAERESIS
LATIN SMALL LETTER Y WITH ACUTE
LATIN SMALL LETTER THORN

> latin1


Latin-1 is just another name for ISO 8859-1.

> utf-8


UTF-8 is a *multi-byte* encoding. It can encode any Unicode
characters, so you can represent those three characters in UTF-8, but
with a different (and longer) byte sequence:

>>> print('\xfc\xfd\xfd'.encode('utf8'))

b'\xc3\xbc\xc3\xbd\xc3\xbd'

> cp437


cp437 is another 8-bit encoding, but it maps entirely different
characters to those three bytes:

>>> for char in b'\xfc\xfd\xfe'.decode('cp437'):

.... print(unicodedata.name(char))
....
SUPERSCRIPT LATIN SMALL LETTER N
SUPERSCRIPT TWO
BLACK SQUARE

As it happens, the character at codepoint 252 (that's LATIN SMALL
LETTER U WITH DIAERESIS) does exist in cp437. It maps to the byte
0x81:

>>> '\xfc'.encode('cp437')

b'\x81'

The other two Unicode characters, at codepoints 253 and 254, do not
exist at all in cp437 and cannot be encoded.

> If I'm not mistaken, all of these codecs can handle the complete 8bit
> character set.


There is no "complete 8bit character set". cp1252, Latin1, and cp437
are all 8-bit character sets, but they're *different* 8-bit character
sets with only partial overlap.

> However, on Windows 7, I am only able to use 'cp437' to display (print) data
> with those characters in Python. If I use any other encoding, Windows laughs
> at me with this error message:
>
> File "C:\Python33\lib\encodings\cp437.py", line 19, in encode
> return codecs.charmap_encode(input,self.errors,encoding_m ap)[0]
> UnicodeEncodeError: 'charmap' codec can't encode character '\xfd' in
> position 3: character maps to <undefined>


It would be helpful to see the code you're running that causes this error.

> Furthermore I get this from IDLE:
>
>>>> import locale
>>>> locale.getdefaultlocale()

> ('en_US', 'cp1252')
>
> I also get 'cp1252' when running the same script from a Windows command
> prompt.
>
> So there is a contradiction between the error message and the default
> encoding.


If you're printing to stdout, it's going to use the encoding
associated with stdout, which does not necessarily have anything to do
with the default locale. Use this to determine what character set you
need to be working in if you want your data to be printable:

>>> import sys
>>> sys.stdout.encoding

'cp437'

> Why am I restricted from using just that one codec? Is this a Windows or
> Python restriction? Please enlighten me.


In Linux, your terminal encoding is probably either UTF-8 or Latin-1,
and either way it has no problems encoding that data for output. In a
Windows cmd terminal, the default terminal encoding is cp437, which
can't support two of the three characters you mentioned above.
 
Reply With Quote
 
 
 
 
danielk
Guest
Posts: n/a
 
      11-21-2012
On Tuesday, November 20, 2012 6:03:47 PM UTC-5, Ian wrote:
> On Tue, Nov 20, 2012 at 2:49 PM, Daniel Klein <> wrote:
>
> > With the assistance of this group I am understanding unicode encoding issues

>
> > much better; especially when handling special characters that are outside of

>
> > the ASCII range. I've got my application working perfectly now

>
> >

>
> > However, I am still confused as to why I can only use one specific encoding.

>
> >

>
> > I've done some research and it appears that I should be able to use anyof

>
> > the following codecs with codepoints '\xfc' (chr(252)) '\xfd' (chr(253)) and

>
> > '\xfe' (chr(254)) :

>
>
>
> These refer to the characters with *Unicode* codepoints 252, 253, and 254:
>
>
>
> >>> unicodedata.name('\xfc')

>
> 'LATIN SMALL LETTER U WITH DIAERESIS'
>
> >>> unicodedata.name('\xfd')

>
> 'LATIN SMALL LETTER Y WITH ACUTE'
>
> >>> unicodedata.name('\xfe')

>
> 'LATIN SMALL LETTER THORN'
>
>
>
> > ISO-8859-1 [ note that I'm using this codec on my Linux box ]

>
>
>
> For ISO 8859-1, these characters happen to exist and even correspond
>
> to the same ordinals: 252, 253, and 254 (this is by design); so there
>
> is no problem encoding them, and the resulting bytes even happen to
>
> match the codepoints of the characters.
>
>
>
> > cp1252

>
>
>
> cp1252 is designed after ISO 8859-1 and also has those same three characters:
>
>
>
> >>> for char in b'\xfc\xfd\xfe'.decode('cp1252'):

>
> ... print(unicodedata.name(char))
>
> ...
>
> LATIN SMALL LETTER U WITH DIAERESIS
>
> LATIN SMALL LETTER Y WITH ACUTE
>
> LATIN SMALL LETTER THORN
>
>
>
> > latin1

>
>
>
> Latin-1 is just another name for ISO 8859-1.
>
>
>
> > utf-8

>
>
>
> UTF-8 is a *multi-byte* encoding. It can encode any Unicode
>
> characters, so you can represent those three characters in UTF-8, but
>
> with a different (and longer) byte sequence:
>
>
>
> >>> print('\xfc\xfd\xfd'.encode('utf8'))

>
> b'\xc3\xbc\xc3\xbd\xc3\xbd'
>
>
>
> > cp437

>
>
>
> cp437 is another 8-bit encoding, but it maps entirely different
>
> characters to those three bytes:
>
>
>
> >>> for char in b'\xfc\xfd\xfe'.decode('cp437'):

>
> ... print(unicodedata.name(char))
>
> ...
>
> SUPERSCRIPT LATIN SMALL LETTER N
>
> SUPERSCRIPT TWO
>
> BLACK SQUARE
>
>
>
> As it happens, the character at codepoint 252 (that's LATIN SMALL
>
> LETTER U WITH DIAERESIS) does exist in cp437. It maps to the byte
>
> 0x81:
>
>
>
> >>> '\xfc'.encode('cp437')

>
> b'\x81'
>
>
>
> The other two Unicode characters, at codepoints 253 and 254, do not
>
> exist at all in cp437 and cannot be encoded.
>
>
>
> > If I'm not mistaken, all of these codecs can handle the complete 8bit

>
> > character set.

>
>
>
> There is no "complete 8bit character set". cp1252, Latin1, and cp437
>
> are all 8-bit character sets, but they're *different* 8-bit character
>
> sets with only partial overlap.
>
>
>
> > However, on Windows 7, I am only able to use 'cp437' to display (print)data

>
> > with those characters in Python. If I use any other encoding, Windows laughs

>
> > at me with this error message:

>
> >

>
> > File "C:\Python33\lib\encodings\cp437.py", line 19, in encode

>
> > return codecs.charmap_encode(input,self.errors,encoding_m ap)[0]

>
> > UnicodeEncodeError: 'charmap' codec can't encode character '\xfd' in

>
> > position 3: character maps to <undefined>

>
>
>
> It would be helpful to see the code you're running that causes this error..


I'm using subprocess.Popen to run a process that sends a list of codepointsto the calling Python program. The list is sent to stdout as a string. Here is a simple example that encodes the string "Dead^Parrot", where (for this example) I'm using '^' to represent chr(254) :

encoded_string = '[68,101,97,100,254,80,97,114,114,111,116]'

This in turn is handled in __repr__ with:

return bytes((eval(encoded_string))).decode('cp437')

I get the aforementioned 'error' if I use any other encoding.

>
>
>
> > Furthermore I get this from IDLE:

>
> >

>
> >>>> import locale

>
> >>>> locale.getdefaultlocale()

>
> > ('en_US', 'cp1252')

>
> >

>
> > I also get 'cp1252' when running the same script from a Windows command

>
> > prompt.

>
> >

>
> > So there is a contradiction between the error message and the default

>
> > encoding.

>
>
>
> If you're printing to stdout, it's going to use the encoding
>
> associated with stdout, which does not necessarily have anything to do
>
> with the default locale. Use this to determine what character set you
>
> need to be working in if you want your data to be printable:
>
>
>
> >>> import sys

>
> >>> sys.stdout.encoding

>
> 'cp437'
>


Hmmm. So THAT'S why I am only able to use 'cp437'. I had (mistakenly) thought that I could just indicate whatever encoding I wanted, as long as the codec supported it.

>
>
> > Why am I restricted from using just that one codec? Is this a Windows or

>
> > Python restriction? Please enlighten me.

>
>
>
> In Linux, your terminal encoding is probably either UTF-8 or Latin-1,
>
> and either way it has no problems encoding that data for output. In a
>
> Windows cmd terminal, the default terminal encoding is cp437, which
>
> can't support two of the three characters you mentioned above.


It may not be able to encode those two characters but it is able to decode them. That seems rather inconsistent (and contradictory) to me.
 
Reply With Quote
 
 
 
 
danielk
Guest
Posts: n/a
 
      11-21-2012
On Tuesday, November 20, 2012 6:03:47 PM UTC-5, Ian wrote:
> On Tue, Nov 20, 2012 at 2:49 PM, Daniel Klein <> wrote:
>
> > With the assistance of this group I am understanding unicode encoding issues

>
> > much better; especially when handling special characters that are outside of

>
> > the ASCII range. I've got my application working perfectly now

>
> >

>
> > However, I am still confused as to why I can only use one specific encoding.

>
> >

>
> > I've done some research and it appears that I should be able to use anyof

>
> > the following codecs with codepoints '\xfc' (chr(252)) '\xfd' (chr(253)) and

>
> > '\xfe' (chr(254)) :

>
>
>
> These refer to the characters with *Unicode* codepoints 252, 253, and 254:
>
>
>
> >>> unicodedata.name('\xfc')

>
> 'LATIN SMALL LETTER U WITH DIAERESIS'
>
> >>> unicodedata.name('\xfd')

>
> 'LATIN SMALL LETTER Y WITH ACUTE'
>
> >>> unicodedata.name('\xfe')

>
> 'LATIN SMALL LETTER THORN'
>
>
>
> > ISO-8859-1 [ note that I'm using this codec on my Linux box ]

>
>
>
> For ISO 8859-1, these characters happen to exist and even correspond
>
> to the same ordinals: 252, 253, and 254 (this is by design); so there
>
> is no problem encoding them, and the resulting bytes even happen to
>
> match the codepoints of the characters.
>
>
>
> > cp1252

>
>
>
> cp1252 is designed after ISO 8859-1 and also has those same three characters:
>
>
>
> >>> for char in b'\xfc\xfd\xfe'.decode('cp1252'):

>
> ... print(unicodedata.name(char))
>
> ...
>
> LATIN SMALL LETTER U WITH DIAERESIS
>
> LATIN SMALL LETTER Y WITH ACUTE
>
> LATIN SMALL LETTER THORN
>
>
>
> > latin1

>
>
>
> Latin-1 is just another name for ISO 8859-1.
>
>
>
> > utf-8

>
>
>
> UTF-8 is a *multi-byte* encoding. It can encode any Unicode
>
> characters, so you can represent those three characters in UTF-8, but
>
> with a different (and longer) byte sequence:
>
>
>
> >>> print('\xfc\xfd\xfd'.encode('utf8'))

>
> b'\xc3\xbc\xc3\xbd\xc3\xbd'
>
>
>
> > cp437

>
>
>
> cp437 is another 8-bit encoding, but it maps entirely different
>
> characters to those three bytes:
>
>
>
> >>> for char in b'\xfc\xfd\xfe'.decode('cp437'):

>
> ... print(unicodedata.name(char))
>
> ...
>
> SUPERSCRIPT LATIN SMALL LETTER N
>
> SUPERSCRIPT TWO
>
> BLACK SQUARE
>
>
>
> As it happens, the character at codepoint 252 (that's LATIN SMALL
>
> LETTER U WITH DIAERESIS) does exist in cp437. It maps to the byte
>
> 0x81:
>
>
>
> >>> '\xfc'.encode('cp437')

>
> b'\x81'
>
>
>
> The other two Unicode characters, at codepoints 253 and 254, do not
>
> exist at all in cp437 and cannot be encoded.
>
>
>
> > If I'm not mistaken, all of these codecs can handle the complete 8bit

>
> > character set.

>
>
>
> There is no "complete 8bit character set". cp1252, Latin1, and cp437
>
> are all 8-bit character sets, but they're *different* 8-bit character
>
> sets with only partial overlap.
>
>
>
> > However, on Windows 7, I am only able to use 'cp437' to display (print)data

>
> > with those characters in Python. If I use any other encoding, Windows laughs

>
> > at me with this error message:

>
> >

>
> > File "C:\Python33\lib\encodings\cp437.py", line 19, in encode

>
> > return codecs.charmap_encode(input,self.errors,encoding_m ap)[0]

>
> > UnicodeEncodeError: 'charmap' codec can't encode character '\xfd' in

>
> > position 3: character maps to <undefined>

>
>
>
> It would be helpful to see the code you're running that causes this error..


I'm using subprocess.Popen to run a process that sends a list of codepointsto the calling Python program. The list is sent to stdout as a string. Here is a simple example that encodes the string "Dead^Parrot", where (for this example) I'm using '^' to represent chr(254) :

encoded_string = '[68,101,97,100,254,80,97,114,114,111,116]'

This in turn is handled in __repr__ with:

return bytes((eval(encoded_string))).decode('cp437')

I get the aforementioned 'error' if I use any other encoding.

>
>
>
> > Furthermore I get this from IDLE:

>
> >

>
> >>>> import locale

>
> >>>> locale.getdefaultlocale()

>
> > ('en_US', 'cp1252')

>
> >

>
> > I also get 'cp1252' when running the same script from a Windows command

>
> > prompt.

>
> >

>
> > So there is a contradiction between the error message and the default

>
> > encoding.

>
>
>
> If you're printing to stdout, it's going to use the encoding
>
> associated with stdout, which does not necessarily have anything to do
>
> with the default locale. Use this to determine what character set you
>
> need to be working in if you want your data to be printable:
>
>
>
> >>> import sys

>
> >>> sys.stdout.encoding

>
> 'cp437'
>


Hmmm. So THAT'S why I am only able to use 'cp437'. I had (mistakenly) thought that I could just indicate whatever encoding I wanted, as long as the codec supported it.

>
>
> > Why am I restricted from using just that one codec? Is this a Windows or

>
> > Python restriction? Please enlighten me.

>
>
>
> In Linux, your terminal encoding is probably either UTF-8 or Latin-1,
>
> and either way it has no problems encoding that data for output. In a
>
> Windows cmd terminal, the default terminal encoding is cp437, which
>
> can't support two of the three characters you mentioned above.


It may not be able to encode those two characters but it is able to decode them. That seems rather inconsistent (and contradictory) to me.
 
Reply With Quote
 
Nobody
Guest
Posts: n/a
 
      11-21-2012
On Wed, 21 Nov 2012 03:24:01 -0800, danielk wrote:

>> >>> import sys
>> >>> sys.stdout.encoding

>> 'cp437'

>
> Hmmm. So THAT'S why I am only able to use 'cp437'. I had (mistakenly)
> thought that I could just indicate whatever encoding I wanted, as long as
> the codec supported it.


sys.stdout.encoding determines how Python converts unicode characters
written to sys.stdout to bytes.

If you want the correct characters to be shown, this has to match the
encoding which the console window uses to convert those bytes back to
unicode characters.

You can tell Python to use whichever encoding you want, but often you only
get to control one side of the equation, in which case there's only one
"right" answer.

 
Reply With Quote
 
Dave Angel
Guest
Posts: n/a
 
      11-21-2012
On 11/21/2012 06:24 AM, danielk wrote:
> On Tuesday, November 20, 2012 6:03:47 PM UTC-5, Ian wrote:
>>> <snip>

>>
>> In Linux, your terminal encoding is probably either UTF-8 or Latin-1,
>>
>> and either way it has no problems encoding that data for output. In a
>>
>> Windows cmd terminal, the default terminal encoding is cp437, which
>>
>> can't support two of the three characters you mentioned above.

> It may not be able to encode those two characters but it is able to decode them. That seems rather inconsistent (and contradictory) to me.


You encode characters (code points), but you never decode them. You
decode bytes. In some cases and in some encodings, the number(ord) of
the two happens to be the same, eg. for ASCII characters. Or to pick
latin1, where the first 256 map exactly.

But to pick utf8 for example, which I use almost exclusively on Linux,
the character chr(255) is a lowercase y with a diaeresis accent.

>>> chr(255)

'ÿ'
>>> unicodedata.name(chr(255))

'LATIN SMALL LETTER Y WITH DIAERESIS'

>>> chr(255).encode()

b'\xc3\xbf'
>>> len(chr(255).encode())

2

It takes 2 bytes to encode that character. (Since there are 1112064
possible characters, most of them take more than one byte to encode in
utf-8. I believe the size can range up to 4 bytes.) But naturally, the
first byte of those 2 cannot be one that's valid by itself as an encoded
character, or it'd be impossible to pick apart (decode) a byte string
starting with that one.

So, there is no character which can be encoded to a single byte 0xc3.
In other words:

>>> bytes([253])

b'\xfd'
>>> bytes([253]).decode()

Traceback (most recent call last):
File "<stdin>", line 1, in <module>
UnicodeDecodeError: 'utf8' codec can't decode byte 0xfd in position 0:
invalid start byte


http://encyclopedia.thefreedictionary.com/UTF-8

has a description of the encoding rules. Note they're really just
arithmetic, rather than arbitrary. Ranges of characters encode to
various numbers of bytes. The main rules are that characters below 0x80
are unchanged, and no valid character encoding is a prefix to any other
valid character encoding.

Contrast that with cp437, where the particular 256 valid characters were
chosen based only on their usefulness, and many of them are above 255.
Consequently, there must be many characters below 255 which cannot be
encoded.





--

DaveA

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: Encoding conundrum Dave Angel Python 0 11-20-2012 10:46 PM
Complex Custom Control Conundrum Iain ASP .Net 0 02-17-2006 08:38 PM
Provider MPLS IP-Enabled Frame Relay Cloud Routing Conundrum Scott Cisco 0 12-23-2004 02:13 AM
Bookmark Filing Conundrum mapmaker Firefox 2 12-21-2004 03:22 AM
Clunky Cache Code Conundrum? Jim Owen ASP .Net 4 07-03-2003 04:49 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57