diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-10-11 16:17:22 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-10-11 16:17:22 (GMT) |
commit | cb43c085e2c236554c8f33e94a242f4568d90bd7 (patch) | |
tree | 132c0097a41178d6f1111afba85da8a14aef58e7 /Doc | |
parent | c7f8b86307a14deff67a79b1841e05e27b9c8360 (diff) | |
download | cpython-cb43c085e2c236554c8f33e94a242f4568d90bd7.zip cpython-cb43c085e2c236554c8f33e94a242f4568d90bd7.tar.gz cpython-cb43c085e2c236554c8f33e94a242f4568d90bd7.tar.bz2 |
Document that keyfile and certfile are now optional.
XXX Forgot to mention this in the last socketmodule.c checkin.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libsocket.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libsocket.tex b/Doc/lib/libsocket.tex index e540f8f..ed82e55 100644 --- a/Doc/lib/libsocket.tex +++ b/Doc/lib/libsocket.tex @@ -265,7 +265,7 @@ protocol number. The address family should be \constant{AF_INET}, \constant{AF_ The protocol number is usually zero and may be omitted in that case. \end{funcdesc} -\begin{funcdesc}{ssl}{sock, keyfile, certfile} +\begin{funcdesc}{ssl}{sock\optional{, keyfile, certfile}} Initiate a SSL connection over the socket \var{sock}. \var{keyfile} is the name of a PEM formatted file that contains your private key. \var{certfile} is a PEM formatted certificate chain file. On |