[issue10863] zlib.compress() fails with string

2011-01-08 Thread Georg Brandl
Changes by Georg Brandl : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue10863] zlib.compress() fails with string

2011-01-08 Thread Georg Brandl
Georg Brandl added the comment: Quite right, this is now fixed in r87870. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue10863] zlib.compress() fails with string

2011-01-08 Thread Jose-Luis Fernandez-Barros
Jose-Luis Fernandez-Barros added the comment: Thanks for your answer. Error remains at development "The Python Standard Library", secction 12. Data Compression and Archiving http://docs.python.org/dev/py3k/library/zlib.html#module-zlib zlib.compress(string[, level]) -- resolution: f

[issue10863] zlib.compress() fails with string

2011-01-08 Thread Georg Brandl
Georg Brandl added the comment: This is already fixed in dev docs, just needs backporting. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue10863] zlib.compress() fails with string

2011-01-07 Thread Jose-Luis Fernandez-Barros
New submission from Jose-Luis Fernandez-Barros : On "The Python Tutorial", section 10.9. Data Compression http://docs.python.org/py3k/tutorial/stdlib.html#data-compression >>> import zlib >>> s = 'witch which has which witches wrist watch' ... >>> t = zlib.compress(s) Traceback (most recent ca