mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
fix typo in variable name (closes #21586)
This commit is contained in:
parent
dea46ec965
commit
419f1fa9bc
1 changed files with 1 additions and 1 deletions
|
@ -210,7 +210,7 @@ length message::
|
|||
chunk = self.sock.recv(min(MSGLEN - bytes_recd, 2048))
|
||||
if chunk == b'':
|
||||
raise RuntimeError("socket connection broken")
|
||||
chucks.append(chunk)
|
||||
chunks.append(chunk)
|
||||
bytes_recd = bytes_recd + len(chunk)
|
||||
return b''.join(chunks)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue