Re: elementtree w/utf8

2007-10-29 Thread Tim Arnold
"Stefan Behnel" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Tim Arnold wrote: >> On a related note, I have another question--where/how can I get the >> cElementTree.py module? Sorry for something so basic, but I tried >> installing >> cElementTree, but while I could compile wit

Re: elementtree w/utf8

2007-10-28 Thread Stefan Behnel
Tim Arnold wrote: > On a related note, I have another question--where/how can I get the > cElementTree.py module? Sorry for something so basic, but I tried installing > cElementTree, but while I could compile with setup.py build, I didn't end up > with a cElementTree.py file anywhere. That's be

Re: elementtree w/utf8

2007-10-27 Thread rzzzwilson
Tim Arnold wrote: > On a related note, I have another question--where/how can I get the > cElementTree.py module? Sorry for something so basic, but I tried installing > cElementTree, but while I could compile with setup.py build, I didn't end up > with a cElementTree.py file anywhere. The directo

Re: elementtree w/utf8

2007-10-26 Thread Tim Arnold
"Marc 'BlackJack' Rintsch" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > On Thu, 25 Oct 2007 17:15:36 -0400, Tim Arnold wrote: > >> Hi, I'm getting the by-now-familiar error: >> return codecs.charmap_decode(input,errors,decoding_map) >> UnicodeEncodeError: 'ascii' codec can't enco

Re: elementtree w/utf8

2007-10-25 Thread Diez B. Roggisch
Tim Arnold schrieb: > Hi, I'm getting the by-now-familiar error: > return codecs.charmap_decode(input,errors,decoding_map) > UnicodeEncodeError: 'ascii' codec can't encode character u'\xa9' in position > 4615: ordinal not in range(128) > > the html file I'm working with is in utf-8, I open it wit

Re: elementtree w/utf8

2007-10-25 Thread Marc 'BlackJack' Rintsch
On Thu, 25 Oct 2007 17:15:36 -0400, Tim Arnold wrote: > Hi, I'm getting the by-now-familiar error: > return codecs.charmap_decode(input,errors,decoding_map) > UnicodeEncodeError: 'ascii' codec can't encode character u'\xa9' in position > 4615: ordinal not in range(128) > > the html file I'm work

elementtree w/utf8

2007-10-25 Thread Tim Arnold
Hi, I'm getting the by-now-familiar error: return codecs.charmap_decode(input,errors,decoding_map) UnicodeEncodeError: 'ascii' codec can't encode character u'\xa9' in position 4615: ordinal not in range(128) the html file I'm working with is in utf-8, I open it with codecs, try to feed it to Tid