Possible Duplicate:
How do I sort unicode strings alphabetically in Python?
As a citizen of the Rest-of-the-World, I'm really annoyed by the fact that computers aren't adapted by default to deal with international issues. Many sites still don't use Unicode and PHP is still in the Dark Ages.
When I want to sort a list of words or names in romanian I always have to write my own functions, which are hardly efficient. There must be some locale setting that makes sort functions obey the alphabet order of the specified language, right?
I'm mainly interested in Python, Java and JavaScript.
EDIT: I found my answer for Python here, as pointed out by Chris Morgan.