summaryrefslogtreecommitdiff
path: root/msgpack/fallback.py
diff options
context:
space:
mode:
authorInada Naoki <songofacandy@gmail.com>2021-02-12 16:20:14 +0900
committerGitHub <noreply@github.com>2021-02-12 16:20:14 +0900
commit1e728a2e0b7f263a4c77d6cdb6ec7c7e2a91872f (patch)
tree0157028dff9506bb2614c7bdc8707ddeaeebf319 /msgpack/fallback.py
parentcfae52437b0d146f74a14d69cb706712c1fa2c95 (diff)
downloadmsgpack-python-1e728a2e0b7f263a4c77d6cdb6ec7c7e2a91872f.tar.gz
fix docstring (#459)
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: