Closed
Description
This library appears to leak memory in Unpacker method under Python 3.12.1
reproducer script:
import msgpack
from io import BytesIO
while True:
buf = BytesIO()
for i in range(100):
buf.write(msgpack.packb(i, use_bin_type=True))
buf.seek(0)
unpacker = msgpack.Unpacker(buf, raw=False)
for unpacked in unpacker:
print(unpacked)
Metadata
Metadata
Assignees
Labels
No labels