Kaydet (Commit) 374f8353 authored tarafından Giampaolo Rodolà's avatar Giampaolo Rodolà

Raise ValuError if non-zero flag argument is provided for sendall() method for…

Raise ValuError if non-zero flag argument is provided for sendall() method for conformity with send(), recv() and recv_into()
üst 67c7ce4b
......@@ -264,6 +264,10 @@ class SSLSocket(socket):
def sendall(self, data, flags=0):
self._checkClosed()
if self._sslobj:
if flags != 0:
raise ValueError(
"non-zero flags not allowed in calls to sendall() on %s" %
self.__class__)
amount = len(data)
count = 0
while (count < amount):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment