few fixes here and there

This commit is contained in:
Miroslav Stampar
2010-05-28 12:47:03 +00:00
parent 7e78876f6a
commit f24187f251
3 changed files with 9 additions and 3 deletions

View File

@@ -1359,3 +1359,9 @@ def getCommonStart(strings=[]):
count += 1
return retVal
def getBruteUnicode(string):
retVal = unicode()
for char in string:
retVal += unichr(ord(char))
return retVal