mirror of
https://github.com/msgpack/msgpack-python.git
synced 2025-12-08 06:09:49 +00:00
When using Unpacker as an iterator, after each yield, the internal
buffer (_fb_buffer) was compacted by reallocation (done by _fb_consume).
When dealing with a lot of small objects, this is very ineffecient.
Thus in commit
|
||
|---|---|---|
| .. | ||
| __init__.py | ||
| _packer.pyx | ||
| _unpacker.pyx | ||
| _version.py | ||
| exceptions.py | ||
| fallback.py | ||
| pack.h | ||
| pack_template.h | ||
| sysdep.h | ||
| unpack.h | ||
| unpack_define.h | ||
| unpack_template.h | ||