fix docstring (#459)

This commit is contained in:
Inada Naoki 2021-02-12 16:20:14 +09:00 committed by GitHub
parent cfae52437b
commit 1e728a2e0b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 60 additions and 33 deletions

View file

@ -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: