Certain tests pass if unicode characters are escaped (like in u"\XXXX") but do not pass if the character is written in unicode (like u"ะค"). For examples see the tests that fail in the branch quantum_printing.
Those test pass if they are run in python, fail in ipython (there is a bug in ipython http://stackoverflow.com/questions/5860713/ipython-unicode-in-gnome-terminal-linux) and fail in sympy-bot (I don't know why). They pass if the characters are escaped. My questions is not how to write the test that I gave as an example - they will be rewritten with escaped characters. The question is should I use unicode characters (that should be supported by the language) even when some tools seem to have problems with them? To me it seems a bad idea always to escape characters - the tests become unreadable. Regards Stefan P.S. # -*- encoding: utf-8 -*- was present when the tests failed -- You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sympy?hl=en.
