diff options
author | Bill Janssen <janssen@parc.com> | 2008-06-29 00:05:51 (GMT) |
---|---|---|
committer | Bill Janssen <janssen@parc.com> | 2008-06-29 00:05:51 (GMT) |
commit | 980f3149a2485d9d96cf715af88c8aa51ba63d7f (patch) | |
tree | 56db575c1ff1cd367a490a62558e7062e6e30c02 | |
parent | 4d45bfe4c561f06b0dacfcecd37d6c395d6da3a2 (diff) | |
download | cpython-980f3149a2485d9d96cf715af88c8aa51ba63d7f.zip cpython-980f3149a2485d9d96cf715af88c8aa51ba63d7f.tar.gz cpython-980f3149a2485d9d96cf715af88c8aa51ba63d7f.tar.bz2 |
fix bad method names in ssl module (and typo in ssl doc)
-rw-r--r-- | Doc/library/ssl.rst | 2 | ||||
-rw-r--r-- | Lib/ssl.py | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 33904b5..658d972 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -129,7 +129,7 @@ Functions, Constants, and Exceptions method should signal unexpected EOF from the other end of the connection. If specified as :const:`True` (the default), it returns a normal EOF in response to unexpected EOF errors raised from the underlying socket; if :const:`False`, it will raise - the exceptions back the caller. + the exceptions back to the caller. .. function:: RAND_status() @@ -215,13 +215,13 @@ class SSLSocket(socket): else: return socket.send(self, data, flags) - def send_to(self, data, addr, flags=0): + def sendto(self, data, addr, flags=0): self._checkClosed() if self._sslobj: - raise ValueError("send_to not allowed on instances of %s" % + raise ValueError("sendto not allowed on instances of %s" % self.__class__) else: - return socket.send_to(self, data, addr, flags) + return socket.sendto(self, data, addr, flags) def sendall(self, data, flags=0): self._checkClosed() @@ -276,13 +276,13 @@ class SSLSocket(socket): else: return socket.recv_into(self, buffer, nbytes, flags) - def recv_from(self, addr, buflen=1024, flags=0): + def recvfrom(self, addr, buflen=1024, flags=0): self._checkClosed() if self._sslobj: - raise ValueError("recv_from not allowed on instances of %s" % + raise ValueError("recvfrom not allowed on instances of %s" % self.__class__) else: - return socket.recv_from(self, addr, buflen, flags) + return socket.recvfrom(self, addr, buflen, flags) def pending(self): self._checkClosed() |