Comment 5 for bug 71386

Revision history for this message
Luzius Thöny (lucius-antonius) wrote :

here is a tiny python script that will do exactly what i expect from 'sort':

-----
#!/usr/bin/env python
# coding: utf-8

list = [u'aaa', u'aab', u'ʌʌʌ', u'aba', u'ɒbb', u'ɒcc', u'ʌbb']

list.sort()

for s in list:
 print s
------

output on the console:

------
aaa
aab
aba
ɒbb
ɒcc
ʌbb
ʌʌʌ
------