[Fredrik]
> this might help:
>
> http://effbot.org/zone/consumer-gzip.htm
>
> (that piece of code is used in production code, so it should
> work...)
This looks wrong to me:
except IndexError:
self.data = data
Shouldn't it be:
except IndexError:
self.__data = data
?
--
Richie Hindle
richie at entrian.com