Commit e82ccea9 authored by Denis Bilenko's avatar Denis Bilenko

socket.py: remove reference to sslold from a comment

parent f4c3f68d
......@@ -489,7 +489,7 @@ class socket(object):
def sendall(self, data, flags=0):
if isinstance(data, unicode):
data = data.encode()
# this sendall is also reused by SSL subclasses (both from ssl and sslold modules),
# this sendall is also reused by gevent.ssl.SSLSocket subclass,
# so it should not call self._sock methods directly
if self.timeout is None:
data_sent = 0
......
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