mdrubin / ironclad

Automatically exported from code.google.com/p/ironclad
Other
0 stars 0 forks source link

No Unicode support #3

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Seriously: none whatsoever. Potentially tricky, because str == unicode in 
IronPython and str != 
unicode in CPython.

Original issue reported on code.google.com by fwere...@gmail.com on 20 Jan 2009 at 8:01

GoogleCodeExporter commented 8 years ago
Is this the reason for the following error trying to use lxml?  I would dearly 
love 
to use lxml from IronPython, so any advances you could make in this regard 
would be 
hugely appreciated!

>>> import lxml
>>> from lxml import etree
Error: PyUnicodeUCS2_DecodeUTF8 is not yet implemented
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<string>", line 21, in load_module
NotImplementedError: PyUnicodeUCS2_DecodeUTF8
>>>

Original comment by tomjobb...@gmail.com on 27 May 2010 at 9:45