diff options
| author | Inada Naoki <songofacandy@gmail.com> | 2021-02-12 16:20:14 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-12 16:20:14 +0900 |
| commit | 1e728a2e0b7f263a4c77d6cdb6ec7c7e2a91872f (patch) | |
| tree | 0157028dff9506bb2614c7bdc8707ddeaeebf319 /msgpack/fallback.py | |
| parent | cfae52437b0d146f74a14d69cb706712c1fa2c95 (diff) | |
| download | msgpack-python-1e728a2e0b7f263a4c77d6cdb6ec7c7e2a91872f.tar.gz | |
fix docstring (#459)
Diffstat (limited to 'msgpack/fallback.py')
| -rw-r--r-- | msgpack/fallback.py | 2 |
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: |
