Unnecessary sort function delete.

svn: r11323
This commit is contained in:
Peter Landgren 2008-11-20 15:34:59 +00:00
parent 9b7b8130ca
commit 642ac1a59b

View File

@ -67,15 +67,6 @@ from Lru import LRU
_CACHE_SIZE = 250
def locale_sort(mylist):
"""
Normal sort routine
"""
#l = [ (locale.strxfrm(x),x) for x in mylist ]
#l.sort()
#return [ x[1] for x in l ]
c
return mylist
class NodeTreeMap: