|
From: David G. <go...@us...> - 2002-07-20 14:03:19
|
Adam Chodorowski checked in: > Update of /cvsroot/docutils/docutils/docutils/languages > In directory usw-pr-cvs1:/tmp/cvs-serv8908/languages > > Added Files: > sv.py > Log Message: > Swedish language mappings. (And docutils/docutils/parsers/rst/languages/sv.py too.) Thanks Adam. But Python modules should be 7-bit clean; please convert the accented characters to "\uXXXX" Unicode escapes (and the strings to "u''" Unicode strings). 8-bit strings will work as long as the modules aren't transfered across platforms, but they'll fail if poorly converted. Best to leave nothing to chance. That's the main reason I held off on these. I should have mentioned it to you before, sorry. I'll add it to the project policies. -- David Goodger <go...@us...> Open-source projects: - Python Docutils: http://docutils.sourceforge.net/ (includes reStructuredText: http://docutils.sf.net/rst.html) - The Go Tools Project: http://gotools.sourceforge.net/ |