gzip HTTP results problem

Richie Hindle richie at entrian.com
Tue Jul 29 11:01:26 EDT 2003


[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






More information about the Python-list mailing list