Warn when use_list is not specified.

Conflicts:
	test/test_sequnpack.py
This commit is contained in:
INADA Naoki 2012-09-24 02:12:55 +09:00
parent c3da845868
commit d503788e95
7 changed files with 36 additions and 23 deletions

View file

@ -34,7 +34,7 @@ def test_exceeding_unpacker_read_size():
f = io.BytesIO(dumpf.getvalue())
dumpf.close()
unpacker = msgpack.Unpacker(f, read_size=read_size)
unpacker = msgpack.Unpacker(f, read_size=read_size, use_list=1)
read_count = 0
for idx, o in enumerate(unpacker):