Files
LSL-PyOptimizer/lslopt
Sei Lisa efcf1cb1df Fix llListSort problem on Windows.
Apparently, under Windows, Python does a UTF-16 word-by-word comparison when comparing two strings:

>>> u'\ud700' < u'\U0001d41a'
True
>>> u'\ue000' < u'\U0001d41a'
False

Fix it by encoding as UTF-32 big endian before comparison, when that happens.
2016-12-22 05:50:18 +01:00
..
2014-07-26 02:43:44 +02:00
2016-12-20 21:25:33 +01:00
2016-12-22 01:05:21 +01:00