summaryrefslogtreecommitdiff
path: root/test/test_seq.py
diff options
context:
space:
mode:
authorINADA Naoki <inada-n@klab.com>2012-09-24 02:12:55 +0900
committerINADA Naoki <inada-n@klab.com>2012-09-24 02:12:55 +0900
commit60df5eadaf507594b73e5e5a887da1fc52cb3f32 (patch)
treef711227eeda469676496d626576dc674524a882a /test/test_seq.py
parent96ed236c1d53e9ac4f3632ed82f15a1d6e0604da (diff)
downloadmsgpack-python-60df5eadaf507594b73e5e5a887da1fc52cb3f32.tar.gz
Warn when use_list is not specified.
Diffstat (limited to 'test/test_seq.py')
-rw-r--r--test/test_seq.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_seq.py b/test/test_seq.py
index d0f9ccc..72e935a 100644
--- a/test/test_seq.py
+++ b/test/test_seq.py
@@ -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):