mirror of
https://github.com/msgpack/msgpack-python.git
synced 2025-10-20 12:23:16 +00:00
fallback: bugfix in next()
This commit is contained in:
parent
94925acb12
commit
fb81f80d14
1 changed files with 1 additions and 1 deletions
|
@ -210,7 +210,7 @@ class Unpacker(object):
|
|||
|
||||
def next(self):
|
||||
try:
|
||||
ret = self._fb_unpack(None, None)
|
||||
ret = self._fb_unpack(EX_CONSTRUCT, None)
|
||||
self._fb_consume()
|
||||
return ret
|
||||
except OutOfData:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue