diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-01-11 20:22:07 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-01-11 20:22:07 (GMT) |
commit | c114e7db60825dc8dcdfda0f26131cdf69158037 (patch) | |
tree | 922f9ad5f54e0e6f1ee05df84eacedb0d35a0c43 /Lib/ssl.py | |
parent | dc3eaa80d493cd23a5589f16a2ead559b0fd376c (diff) | |
download | cpython-c114e7db60825dc8dcdfda0f26131cdf69158037.zip cpython-c114e7db60825dc8dcdfda0f26131cdf69158037.tar.gz cpython-c114e7db60825dc8dcdfda0f26131cdf69158037.tar.bz2 |
remove extra definite article
Diffstat (limited to 'Lib/ssl.py')
-rw-r--r-- | Lib/ssl.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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() |