added support for proper unicode session(s) storage/retrieval

This commit is contained in:
Miroslav Stampar
2010-05-24 11:00:49 +00:00
parent f34e6badfd
commit e9be60e1ac
5 changed files with 24 additions and 16 deletions

View File

@@ -194,10 +194,10 @@ def bisection(payload, expression, length=None, charsetType=None, firstChar=None
minValue = charTbl[0]
else:
retVal = minValue + 1
if retVal < 256:
if retVal < 128:
return chr(retVal)
else:
return unichr(retVal)
return unichr(retVal) #test value 50089
def etaProgressUpdate(charTime, index):
if len(progressTime) <= ( (length * 3) / 100 ):