pygold is not compatible with Python 2.5
Status: Inactive
Brought to you by:
mkrajewski
I found the following:
in GrammerReader::readString (line 67) the following:
result.append(char) raises a TypeError since char is a byte array and result is expected unicode strings.
I believe that result.fromstring(char) should be used
in Parser::__fixCaseTrue (line 317)
string.lower(chars) should be replaced with chars.lower()