8000 fallback: bugfix in next() · overcastcloud/msgpack-python@fb81f80 · GitHub
[go: up one dir, main page]

Skip to content

Commit fb81f80

Browse files
committed
fallback: bugfix in next()
1 parent 94925ac commit fb81f80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

msgpack/fallback.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ def __iter__(self):
210210

211211
def next(self):
212212
try:
213-
ret = self._fb_unpack(None, None)
213+
ret = self._fb_unpack(EX_CONSTRUCT, None)
214214
self._fb_consume()
215215
return ret
216216
except OutOfData:

0 commit comments

Comments
 (0)
0