mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Somebody checked in a version of httplib that doesn't even compile --
SyntaxError. Fix it.
This commit is contained in:
parent
6459c8d067
commit
f3623f310e
1 changed files with 1 additions and 1 deletions
|
@ -614,7 +614,7 @@ class FakeSocket:
|
|||
break
|
||||
raise
|
||||
except socket.error, err:
|
||||
if err[0] = errno.EINTR:
|
||||
if err[0] == errno.EINTR:
|
||||
continue
|
||||
raise
|
||||
if buf == '':
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue