473,473 Members | 2,102 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Problem with sets and Unicode strings

Hi!

The following program in an UTF-8 encoded file:
# -*- coding: UTF-8 -*-

FIELDS = ("Fächer", )
FROZEN_FIELDS = frozenset(FIELDS)
FIELDS_SET = set(FIELDS)

print u"Fächer" in FROZEN_FIELDS
print u"Fächer" in FIELDS_SET
print u"Fächer" in FIELDS
gives this output
False
False
Traceback (most recent call last):
File "test.py", line 9, in ?
print u"FÀcher" in FIELDS
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 1:
ordinal not in range(128)
Why do the first two print statements succeed and the third one fails
with an exception?

Why does the use of set/frozenset remove the exception?
Thanks,
Dennis
Jun 27 '06 #1
14 2508
On 6/27/06, Dennis Benzinger <De**************@gmx.net> wrote:
Hi!

The following program in an UTF-8 encoded file:
# -*- coding: UTF-8 -*-

FIELDS = ("Fächer", )
FROZEN_FIELDS = frozenset(FIELDS)
FIELDS_SET = set(FIELDS)

print u"Fächer" in FROZEN_FIELDS
print u"Fächer" in FIELDS_SET
print u"Fächer" in FIELDS
gives this output
False
False
Traceback (most recent call last):
File "test.py", line 9, in ?
print u"FÀcher" in FIELDS
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 1:
ordinal not in range(128)
Why do the first two print statements succeed and the third one fails
with an exception?
Actually all three statements fail to produce correct result.
Why does the use of set/frozenset remove the exception?


Because sets use hash algorithm to find matches, whereas the last
statement directly compares a unicode string with a byte string. Byte
strings can only contain ascii characters, that's why python raises an
exception. The problem is very easy to fix: use unicode strings for
all non-ascii strings.
Jun 27 '06 #2
Serge Orlov wrote:
On 6/27/06, Dennis Benzinger <De**************@gmx.net> wrote:
Hi!

The following program in an UTF-8 encoded file:
# -*- coding: UTF-8 -*-

FIELDS = ("Fächer", )
FROZEN_FIELDS = frozenset(FIELDS)
FIELDS_SET = set(FIELDS)

print u"Fächer" in FROZEN_FIELDS
print u"Fächer" in FIELDS_SET
print u"Fächer" in FIELDS
gives this output
False
False
Traceback (most recent call last):
File "test.py", line 9, in ?
print u"FÀcher" in FIELDS
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 1:
ordinal not in range(128)
Why do the first two print statements succeed and the third one fails
with an exception?
Actually all three statements fail to produce correct result.


So this is a bug in Python?
frozenset remove the exception?

Because sets use hash algorithm to find matches, whereas the last
statement directly compares a unicode string with a byte string. Byte
strings can only contain ascii characters, that's why python raises an
exception. The problem is very easy to fix: use unicode strings for
all non-ascii strings.


No, byte strings contain characters which are at least 8-bit wide
<http://docs.python.org/ref/types.html>. But I don't understand what
Python is trying to decode and why the exception says something about
the ASCII codec, because my file is encoded with UTF-8.
Dennis
Jun 27 '06 #3
On 6/27/06, Dennis Benzinger <De**************@gmx.net> wrote:
Serge Orlov wrote:
On 6/27/06, Dennis Benzinger <De**************@gmx.net> wrote:
Hi!

The following program in an UTF-8 encoded file:
# -*- coding: UTF-8 -*-

FIELDS = ("Fächer", )
FROZEN_FIELDS = frozenset(FIELDS)
FIELDS_SET = set(FIELDS)

print u"Fächer" in FROZEN_FIELDS
print u"Fächer" in FIELDS_SET
print u"Fächer" in FIELDS
gives this output
False
False
Traceback (most recent call last):
File "test.py", line 9, in ?
print u"FÀcher" in FIELDS
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 1:
ordinal not in range(128)
Why do the first two print statements succeed and the third one fails
with an exception?
Actually all three statements fail to produce correct result.


So this is a bug in Python?


No.
frozenset remove the exception?

Because sets use hash algorithm to find matches, whereas the last
statement directly compares a unicode string with a byte string. Byte
strings can only contain ascii characters, that's why python raises an
exception. The problem is very easy to fix: use unicode strings for
all non-ascii strings.


No, byte strings contain characters which are at least 8-bit wide
<http://docs.python.org/ref/types.html>.


Yes, but later it's written that non-ascii characters do not have
universal meaning assigned to them. In other words if you put byte
0xE4 into a bytes string all python knows about it is that it's *some*
character. If you put character U+00E4 into a unicode string python
knows it's a "latin small letter a with diaeresis". Trying to compare
*some* character with a specific character is obviously undefined.
But I don't understand what
Python is trying to decode and why the exception says something about
the ASCII codec, because my file is encoded with UTF-8.


Because byte strings can come from different sources (network, files,
etc) not only from the sources of your program python cannot assume
all of them are utf-8. It assumes they are ascii, because most of
wide-spread text encodings are ascii bases. Actually it's a guess,
since there are utf-16, utf-32 and other non-ascii encodings. If you
want to experience the life without guesses put
sys.setdefaultencoding("undefined") into site.py
Jun 27 '06 #4
Dennis Benzinger wrote:
Serge Orlov wrote:
On 6/27/06, Dennis Benzinger <De**************@gmx.net> wrote:
Hi!

The following program in an UTF-8 encoded file:
# -*- coding: UTF-8 -*-

FIELDS = ("Fächer", )
FROZEN_FIELDS = frozenset(FIELDS)
FIELDS_SET = set(FIELDS)

print u"Fächer" in FROZEN_FIELDS
print u"Fächer" in FIELDS_SET
print u"Fächer" in FIELDS
gives this output
False
False
Traceback (most recent call last):
File "test.py", line 9, in ?
print u"FÀcher" in FIELDS
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 1:
ordinal not in range(128)
Why do the first two print statements succeed and the third one fails
with an exception?

Actually all three statements fail to produce correct result.


So this is a bug in Python?


No.
frozenset remove the exception?

Because sets use hash algorithm to find matches, whereas the last
statement directly compares a unicode string with a byte string. Byte
strings can only contain ascii characters, that's why python raises an
exception. The problem is very easy to fix: use unicode strings for
all non-ascii strings.


No, byte strings contain characters which are at least 8-bit wide
<http://docs.python.org/ref/types.html>. But I don't understand what
Python is trying to decode and why the exception says something about
the ASCII codec, because my file is encoded with UTF-8.


Please read

http://www.amk.ca/python/howto/unicode

The string in all of the containers (FIELDS, FROZEN_FIELDS, FIELDS_SET) is a
regular byte string, not a Unicode string. The encoding declaration only
controls how the file is parsed. The string literal that you use for FIELDS is a
regular string literal, not a Unicode string literal, so the object it creates
is an 8-bit byte string. The tuple containment test is attempting to compare
your Unicode string object to the regular string object for equality. Python
does these comparisons by attempting to decode the regular string into a Unicode
string. Since there is no encoding information present on regular strings at
this point (since the encoding declaration in your file only controls parsing,
nothing else), Python assumes ASCII and throws an exception otherwise.

--
Robert Kern

"I have come to believe that the whole world is an enigma, a harmless enigma
that is made terrible by our own mad attempt to interpret it as though it had
an underlying truth."
-- Umberto Eco

Jun 27 '06 #5
Dennis Benzinger a écrit :
No, byte strings contain characters which are at least 8-bit wide
<http://docs.python.org/ref/types.html>. But I don't understand what
Python is trying to decode and why the exception says something about
the ASCII codec, because my file is encoded with UTF-8.


[addendum to others replies]

The file encoding directive is used by Python to convert u"xxx" strings
into unicode objects using right conversion rules when compiling the code.
When a string is written simply with "xxx", its a 8 bits string with NO
encoding data associated. When these strings must be converted they are
considered to be using sys.getdefaultencoding() [generally ascii -
forced ascii in python 2.5]

So a short reply: the utf8 directive has no effect on 8 bits strings,
use unicode strings to manage correctly non-ascii texts.

A+

Laurent.

Jun 28 '06 #6
Serge Orlov wrote:
On 6/27/06, Dennis Benzinger <De**************@gmx.net> wrote:
Serge Orlov wrote:
> On 6/27/06, Dennis Benzinger <De**************@gmx.net> wrote:
>> Hi!
>>
>> The following program in an UTF-8 encoded file:
>>
>>
>> # -*- coding: UTF-8 -*-
>>
>> FIELDS = ("Fächer", )
>> FROZEN_FIELDS = frozenset(FIELDS)
>> FIELDS_SET = set(FIELDS)
>>
>> print u"Fächer" in FROZEN_FIELDS
>> print u"Fächer" in FIELDS_SET
>> print u"Fächer" in FIELDS
>>
>>
>> gives this output
>>
>>
>> False
>> False
>> Traceback (most recent call last):
>> File "test.py", line 9, in ?
>> print u"FÀcher" in FIELDS
>> UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in

position 1:
>> ordinal not in range(128)
>>
>>
>> Why do the first two print statements succeed and the third one fails
>> with an exception?
>
> Actually all three statements fail to produce correct result.


So this is a bug in Python?


No.
> frozenset remove the exception?
>
> Because sets use hash algorithm to find matches, whereas the last
> statement directly compares a unicode string with a byte string. Byte
> strings can only contain ascii characters, that's why python raises an
> exception. The problem is very easy to fix: use unicode strings for
> all non-ascii strings.


No, byte strings contain characters which are at least 8-bit wide
<http://docs.python.org/ref/types.html>.


Yes, but later it's written that non-ascii characters do not have
universal meaning assigned to them. In other words if you put byte
0xE4 into a bytes string all python knows about it is that it's *some*
character. If you put character U+00E4 into a unicode string python
knows it's a "latin small letter a with diaeresis". Trying to compare
*some* character with a specific character is obviously undefined.
[...]


But <http://docs.python.org/ref/comparisons.html> says:

Strings are compared lexicographically using the numeric equivalents
(the result of the built-in function ord()) of their characters. Unicode
and 8-bit strings are fully interoperable in this behavior.

Doesn't this mean that Unicode and 8-bit strings can be compared and
this comparison is well defined? (even if it's is not meaningful)

Thanks for your anwsers,
Dennis
Jun 28 '06 #7
Robert Kern wrote:
Dennis Benzinger wrote:
Serge Orlov wrote:
On 6/27/06, Dennis Benzinger <De**************@gmx.net> wrote:
Hi!

The following program in an UTF-8 encoded file:
# -*- coding: UTF-8 -*-

FIELDS = ("Fächer", )
FROZEN_FIELDS = frozenset(FIELDS)
FIELDS_SET = set(FIELDS)

print u"Fächer" in FROZEN_FIELDS
print u"Fächer" in FIELDS_SET
print u"Fächer" in FIELDS
gives this output
False
False
Traceback (most recent call last):
File "test.py", line 9, in ?
print u"FÀcher" in FIELDS
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 1:
ordinal not in range(128)
Why do the first two print statements succeed and the third one fails
with an exception?
Actually all three statements fail to produce correct result.


So this is a bug in Python?


No.
[...]


But I'd say that it's not intuitive that for sets x in y can be false
(without raising an exception!) while the doing the same with a tuple
raises an exception. Where is this difference documented?
Thanks,
Dennis
Jun 28 '06 #8
> But <http://docs.python.org/ref/comparisons.html> says:

Strings are compared lexicographically using the numeric equivalents
(the result of the built-in function ord()) of their characters. Unicode
and 8-bit strings are fully interoperable in this behavior.

Doesn't this mean that Unicode and 8-bit strings can be compared and
this comparison is well defined? (even if it's is not meaningful)


Obviously not - otherwise you wouldn't have the problems you'd observed,
wouldn't you?

What happens of course is that in case of string to unicode-comparison, the
string gets coerced to an unicode value - using the default encoding!
# -*- coding: latin1 -*-

print "ö".decode("latin1") == u"ö"
print "ö" == u"ö"

So - they are fully interoperable and the comparison is well defined - when
the coercion is successful.

Diez
Jun 28 '06 #9
> But I'd say that it's not intuitive that for sets x in y can be false
(without raising an exception!) while the doing the same with a tuple
raises an exception. Where is this difference documented?


2.3.7 Set Types -- set, frozenset

....

Set elements are like dictionary keys; they need to define both __hash__ and
__eq__ methods.
....

And it has to hold that

a == b => hash(a) == hash(b)

but NOT

hash(a) == hash(b) => a == b

Thus if the hashes vary, the set doesn't bother to actually compare the
values.

Diez
Jun 28 '06 #10
Diez B. Roggisch wrote:
But I'd say that it's not intuitive that for sets x in y can be false
(without raising an exception!) while the doing the same with a tuple
raises an exception. Where is this difference documented?


2.3.7 Set Types -- set, frozenset

...

Set elements are like dictionary keys; they need to define both __hash__ and
__eq__ methods.
...

And it has to hold that

a == b => hash(a) == hash(b)

but NOT

hash(a) == hash(b) => a == b

Thus if the hashes vary, the set doesn't bother to actually compare the
values.
[...]


Ok, I understand.
But isn't it a (minor) problem that using a set like this:

# -*- coding: UTF-8 -*-

FIELDS_SET = set(("Fächer", ))
print u"Fächer" in FIELDS_SET
print u"Fächer" == "Fächer"
shadows the error of not setting sys.defaultencoding()?
Dennis
Jun 29 '06 #11
Dennis Benzinger wrote:
Ok, I understand.
But isn't it a (minor) problem that using a set like this:

# -*- coding: UTF-8 -*-

FIELDS_SET = set(("Fächer", ))

print u"Fächer" in FIELDS_SET
print u"Fächer" == "Fächer"

shadows the error of not setting sys.defaultencoding()?


You can't set the default encoding. If you could, then scripts that run on your
machine wouldn't run on mine.

If there's an error, it's the fact that you use a regular string at the
beginning ("Fächer") and a unicode string later (u"Fächer"). But set objects
can't know that that's the problem or even if it *is* a problem.

--
Robert Kern

"I have come to believe that the whole world is an enigma, a harmless enigma
that is made terrible by our own mad attempt to interpret it as though it had
an underlying truth."
-- Umberto Eco

Jun 29 '06 #12
Robert Kern wrote:
Dennis Benzinger wrote:
Ok, I understand.
But isn't it a (minor) problem that using a set like this:

# -*- coding: UTF-8 -*-

FIELDS_SET = set(("Fächer", ))

print u"Fächer" in FIELDS_SET
print u"Fächer" == "Fächer"

shadows the error of not setting sys.defaultencoding()?


You can't set the default encoding. If you could, then scripts that run
on your machine wouldn't run on mine.
[...]


As Serge Orlov wrote in one of his posts you _can_ set the default
encoding (at least in site.py). See
<http://docs.python.org/lib/module-sys.html>
Bye,
Dennis
Jun 29 '06 #13
Dennis Benzinger wrote:
Robert Kern wrote:
Dennis Benzinger wrote:
Ok, I understand.
But isn't it a (minor) problem that using a set like this:

# -*- coding: UTF-8 -*-

FIELDS_SET = set(("Fächer", ))

print u"Fächer" in FIELDS_SET
print u"Fächer" == "Fächer"

shadows the error of not setting sys.defaultencoding()?

You can't set the default encoding. If you could, then scripts that run
on your machine wouldn't run on mine.
[...]


As Serge Orlov wrote in one of his posts you _can_ set the default
encoding (at least in site.py). See
<http://docs.python.org/lib/module-sys.html>


Okay, *don't* set the default encoding to anything other than 'ascii'. Doing so
would be an error, not the other way around.

--
Robert Kern

"I have come to believe that the whole world is an enigma, a harmless enigma
that is made terrible by our own mad attempt to interpret it as though it had
an underlying truth."
-- Umberto Eco

Jun 29 '06 #14
Dennis Benzinger wrote:
shadows the error of not setting sys.defaultencoding()?


You can't set the default encoding. If you could, then scripts that run
on your machine wouldn't run on mine.
[...]


As Serge Orlov wrote in one of his posts you _can_ set the default
encoding (at least in site.py). See
<http://docs.python.org/lib/module-sys.html>


yes, but you're not supposed to do that, for several reasons, including
the reasons Robert provided: if you mess with the interpreter defaults,
code you write isn't portable, and code written by others may not work
on your machine.

the interpreter isn't fully encoding agnostic either; things are not
guaranteed to work properly if you're not using the default.

</F>

Jun 29 '06 #15

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

30
by: aurora | last post by:
I have long find the Python default encoding of strict ASCII frustrating. For one thing I prefer to get garbage character than an exception. But the biggest issue is Unicode exception often pop up...
7
by: copx | last post by:
For some reason Python (on Windows) doesn't use the system's default character set and that's a serious problem for me. I need to process German textfiles (containing umlauts and other > 7bit...
0
by: JJY | last post by:
Hi. I have a few sets of unicode strings I am trying to display. I can display session variables with unicode strings from a XML file, but I can't display a unicode string coming from a DLL. ...
19
by: David zhu | last post by:
I've got different result when comparing two strings using "==" and string.Compare(). The two strings seems to have same value "1202002" in the quick watch, and both have the same length 7 which I...
4
by: Richard506 | last post by:
If you take this Byte Arra Dim bytes() As Byte = { 207, 224, 135, 161, 253, 233, 111, 110, 99, 111, 100, 105, 110, 103, 32, 69, 120, 97, 109, 112, 108, 101 and write the byte array to disk...
4
by: Cott Lang | last post by:
ERROR: could not convert UTF-8 character 0x00ef to ISO8859-1 Running 7.4.5, I frequently get this error, and ONLY on this particular character despite seeing quite a bit of 8 bit. I don't really...
12
by: Steven Nagy | last post by:
Hi all, I have to do a website in chinese! Basically I just need to know how to output chinese characters. I am assuming its very easy, but have never done it before. I can however do simple...
5
by: Norman Diamond | last post by:
Here are two complete lines of output from Visual Studio 2005: 1>$B%W%m%8%'%/%H=PNO$K(B Authenticode $B=pL>$7$F$$$^$9(B... 1>Successfully signed: c:\T The first line means roughly: Doing...
1
by: erikcw | last post by:
Hi, I'm trying to insert some data from an XML file into MySQL. However, while importing one of the files, I got this error: Traceback (most recent call last): File "wa.py", line 304, in ?...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.