Hi all, I've got some source code which will be handling non-ASCII chars like umlauts and what not, and I've got a testing portion stored in the code.
I get this deprecation warning when I run my code - __main__:1: DeprecationWarning: Non-ASCII character '\xfc' in file C:\Python24\testit.py on line 733, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details I'm reading this - http://www.python.org/peps/pep-0263.html Now, the non-ASCII character is in the test data, so it's not actually part of my code. Will Python be able to handle \xfc and company in data without my telling it to use a different form of encoding? When I run the code, and get my returned data, it looks like this in Pythonwin - >>> print j["landunits"].keys() ['"J\xe4ger"', '"Deutschmeister"', '"Army of Bohemia"', '"Gardegrenadiere"', '"K.u.K Armee"', '"Erzherzog"', '"Army of Italy"', '"Army of Silesia"', '"Army of Hungary"'] So J\xe4ger is actually Jäger. When I run it slightly differently - >>> for item in j["landunits"].keys(): ... print item ... "Jäger" "Deutschmeister" "Army of Bohemia" "Gardegrenadiere" "K.u.K Armee" "Erzherzog" "Army of Italy" "Army of Silesia" "Army of Hungary" It prints the umlauted 'a' fine and dandy. So, do I have to do anything to ensure that Python will continue to display the non-ASCII chars? I intend to have my output delivered via a Pythoncard/wxPython GUI, and I'm not sure if it's the Python interpreter displaying it properly, or Pythonwin making a special effort. Regards, Liam Clarke _______________________________________________ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor