消息 [174854]
> flush() does not update unconsumed_tail and unused_data.
>
> >>> import zlib
> >>> x = zlib.compress(b'abcdefghijklmnopqrstuvwxyz') + b'0123456789'
> >>> dco = zlib.decompressobj()
> >>> dco.decompress(x, 1)
> b'a'
> >>> dco.flush()
> b'bcdefghijklmnopqrstuvwxyz'
> >>> dco.unconsumed_tail
> b'NIMK\xcf\xc8\xcc\xca\xce\xc9\xcd\xcb/(,*.)-+\xaf\xa8\xac\x02\x00\x90\x86\x0b 0123456789'
> >>> dco.unused_data
> b''
I see another bug here - described in issue 16411. |
|
| 日期 |
用户 |
动作 |
参数 |
| 2012-11-05 00:31:40 | nadeem.vawda | 修改 | recipients:
+ nadeem.vawda, amaury.forgeotdarc, python-dev, serhiy.storchaka |
| 2012-11-05 00:31:40 | nadeem.vawda | 修改 | messageid: <1352075500.5.0.441456161616.issue16350@psf.upfronthosting.co.za> |
| 2012-11-05 00:31:40 | nadeem.vawda | 链接 | issue16350 messages |
| 2012-11-05 00:31:40 | nadeem.vawda | 创建 | |
|