diff options
author | Thomas Wouters <thomas@python.org> | 2000-08-15 19:30:36 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2000-08-15 19:30:36 (GMT) |
commit | caa658d04739875133f388d9dc470843e3870f87 (patch) | |
tree | 6ae5515668734f5e45c85f33aecfbcbe7a6062a3 /Doc | |
parent | 56221a7cfa8f361f4310b63b74091766c50dd7f8 (diff) | |
download | cpython-caa658d04739875133f388d9dc470843e3870f87.zip cpython-caa658d04739875133f388d9dc470843e3870f87.tar.gz cpython-caa658d04739875133f388d9dc470843e3870f87.tar.bz2 |
Apply SF patch #101151, by Peter S-K, which fixes smtplib's passing of the
'helo' and 'ehlo' message, and exports the 'make_fqdn' function. This
function should be moved to socket.py, if that module ever gets a Python
wrapper.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libsocket.tex | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/lib/libsocket.tex b/Doc/lib/libsocket.tex index 6b44e15..6f7ab1e 100644 --- a/Doc/lib/libsocket.tex +++ b/Doc/lib/libsocket.tex @@ -136,6 +136,8 @@ and \var{ipaddrlist} is a list of IP addresses for the same interface on the same host (most likely containing only a single address). To find the fully qualified domain name, check \var{hostname} and the items of \var{aliaslist} for an entry containing at least one period. +An implementation of this algorithm can be found in the module +\module{smtplib} in form of the \function{make_fqdn()} function. \end{funcdesc} \begin{funcdesc}{getprotobyname}{protocolname} |