From c114e7db60825dc8dcdfda0f26131cdf69158037 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sun, 11 Jan 2015 15:22:07 -0500 Subject: [PATCH] remove extra definite article --- Lib/ssl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/ssl.py b/Lib/ssl.py index 386702b557..39019f9b13 100644 --- a/Lib/ssl.py +++ b/Lib/ssl.py @@ -573,8 +573,8 @@ class SSLObject: 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() -- 2.50.1