summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2013-11-23 13:42:01 (GMT)
committerChristian Heimes <christian@cheimes.de>2013-11-23 13:42:01 (GMT)
commit6b2ff98df45d3d1ca389f4ae07a2ef4e08257867 (patch)
tree0377fb8a567b114c8afda6a91c6ed8f89a123856
parent8933521b3dec9a6ac55b91f2ff604528381a157c (diff)
downloadcpython-6b2ff98df45d3d1ca389f4ae07a2ef4e08257867.zip
cpython-6b2ff98df45d3d1ca389f4ae07a2ef4e08257867.tar.gz
cpython-6b2ff98df45d3d1ca389f4ae07a2ef4e08257867.tar.bz2
Correct documentation clientAuth -> CLIENT_AUTH
-rw-r--r--Doc/library/ssl.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst
index 8d14ae9..94bdcef 100644
--- a/Doc/library/ssl.rst
+++ b/Doc/library/ssl.rst
@@ -688,7 +688,7 @@ Constants
.. versionadded:: 3.4
-.. data:: Purpose.clientAuth
+.. data:: Purpose.CLIENT_AUTH
Option for :meth:`SSLContext.load_default_certs` to load CA certificates
for TLS web client authentication (server side socket).
@@ -928,7 +928,7 @@ to speed up repeated connections from the same clients.
The *purpose* flag specifies what kind of CA certificates are loaded. The
default settings :data:`Purpose.SERVER_AUTH` loads certificates, that are
flagged and trusted for TLS web server authentication (client side
- sockets). :data:`Purpose.clientAuth` loads CA certificates for client
+ sockets). :data:`Purpose.CLIENT_AUTH` loads CA certificates for client
certificate verification on the server side.
.. versionadded:: 3.4