This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author doerwalter
Recipients
Date 2004-10-25.10:33:01
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=89016

There's only one spot in XIST where the default encoding is 
relevant: When you pass a str object to one of the node 
constructors. This str object is converted to unicode using 
the default encoding. So html.p("ö") won't work, unless you 
change the default encoding, but html.p(unicode("ö", "iso-
8859-1")) will, and so will html.p(u"ö") with a proper PEP 263 
encoding declaration at the beginning of the file. If this 
doesn't fix you problem, you can mail me directly.
History
Date User Action Args
2007-08-23 16:08:31adminlinkissue1052098 messages
2007-08-23 16:08:31admincreate