|
From: David G. <go...@py...> - 2002-11-13 13:46:31
|
Vasko Miroslav wrote: > I'm sending translated $subject as patch against CVS snapshot ... > btw, do I have cvs write access for docutils module? Yes, you do. Please feel free to check in the patch yourself. > one thing I want to know, docutils/languages/sk.py has punctuated characters > translated as \Uxxxx, and my python2 (2.1.1, 2.1.3, 2.2.1) translates these > characters as \xxx. how can I get \Uxxxx representation? The "unicode-escape" or "raw-unicode-escape" encoding might give it, but ISTR that it gives \xXY instead of \u00XY. \u00XY is equivalent to \xXY; I used all-\uXXXX for consistency only. -- David Goodger <go...@py...> 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/ |