[Python-checkins] cpython: remove extra definite article

benjamin.peterson python-checkins at python.org
Sun Jan 11 21:22:26 CET 2015


https://hg.python.org/cpython/rev/ca5fe2148490
changeset:   94115:ca5fe2148490
user:        Benjamin Peterson <benjamin at python.org>
date:        Sun Jan 11 15:22:07 2015 -0500
summary:
  remove extra definite article

files:
  Lib/ssl.py |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Lib/ssl.py b/Lib/ssl.py
--- a/Lib/ssl.py
+++ b/Lib/ssl.py
@@ -573,8 +573,8 @@
         return self._sslobj.cipher()
 
     def shared_ciphers(self):
-        """Return the a list of ciphers shared by the client during the
-        handshake or None if this is not a valid server connection.
+        """Return a list of ciphers shared by the client during the handshake or
+        None if this is not a valid server connection.
         """
         return self._sslobj.shared_ciphers()
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list