summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libsocket.tex
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2006-10-27 12:50:38 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2006-10-27 12:50:38 (GMT)
commit14b0cab5d5c02d8e4ec92088573bdb6a7a66e7ef (patch)
tree4320e7357e3d49107e40c734b8cd5b2c6038c082 /Doc/lib/libsocket.tex
parent514d0cf40e74fc1b546de3b65014ced4dd40e8a4 (diff)
downloadcpython-14b0cab5d5c02d8e4ec92088573bdb6a7a66e7ef.zip
cpython-14b0cab5d5c02d8e4ec92088573bdb6a7a66e7ef.tar.gz
cpython-14b0cab5d5c02d8e4ec92088573bdb6a7a66e7ef.tar.bz2
[Bug #1583946] Reword description of server and issuer
Diffstat (limited to 'Doc/lib/libsocket.tex')
-rw-r--r--Doc/lib/libsocket.tex11
1 files changed, 6 insertions, 5 deletions
diff --git a/Doc/lib/libsocket.tex b/Doc/lib/libsocket.tex
index aa75ec9..ececea4 100644
--- a/Doc/lib/libsocket.tex
+++ b/Doc/lib/libsocket.tex
@@ -712,14 +712,15 @@ read until EOF. The return value is a string of the bytes read.
\end{methoddesc}
\begin{methoddesc}{server}{}
-Returns a string containing the ASN.1 distinguished name identifying the
-server's certificate. (See below for an example
-showing what distinguished names look like.)
+Returns a string describing the server's certificate.
+Useful for debugging purposes; do not parse the content of this string
+because its format can't be parsed unambiguously.
\end{methoddesc}
\begin{methoddesc}{issuer}{}
-Returns a string containing the ASN.1 distinguished name identifying the
-issuer of the server's certificate.
+Returns a string describing the issuer of the server's certificate.
+Useful for debugging purposes; do not parse the content of this string
+because its format can't be parsed unambiguously.
\end{methoddesc}
\subsection{Example \label{socket-example}}