summaryrefslogtreecommitdiff
path: root/msgpack/fallback.py
diff options
context:
space:
mode:
Diffstat (limited to 'msgpack/fallback.py')
-rw-r--r--msgpack/fallback.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/msgpack/fallback.py b/msgpack/fallback.py
index 7dbc67a..4bcc05d 100644
--- a/msgpack/fallback.py
+++ b/msgpack/fallback.py
@@ -260,7 +260,7 @@ class Unpacker(object):
Example of streaming deserialize from socket::
- unpacker = Unpacker(max_buffer_size)
+ unpacker = Unpacker()
while True:
buf = sock.recv(1024**2)
if not buf: