summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorInada Naoki <songofacandy@gmail.com>2019-12-06 21:16:27 +0900
committerGitHub <noreply@github.com>2019-12-06 21:16:27 +0900
commitf6f6f328eb2d7b7f1272fa7addb31d2ac5bef207 (patch)
tree2d5d5507d4c1bef2cb88687c9fd24f72503566e6 /test
parent7a8ce0f9ca910a851b6835d26b1d6970a188fa4e (diff)
downloadmsgpack-python-f6f6f328eb2d7b7f1272fa7addb31d2ac5bef207.tar.gz
Fix fallback Unpacker.read() (#388)
Fixes #352.
Diffstat (limited to 'test')
-rw-r--r--test/test_sequnpack.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/test_sequnpack.py b/test/test_sequnpack.py
index 9b69479..ad29de8 100644
--- a/test/test_sequnpack.py
+++ b/test/test_sequnpack.py
@@ -93,6 +93,15 @@ def test_readbytes():
assert unpacker.unpack() == ord(b"a")
assert unpacker.unpack() == ord(b"r")
+ # Issue 352
+ u = Unpacker()
+ u.feed(b"x")
+ assert bytes(u.read_bytes(1)) == b"x"
+ with raises(StopIteration):
+ next(u)
+ u.feed(b"\1")
+ assert next(u) == 1
+
def test_issue124():
unpacker = Unpacker()