summaryrefslogtreecommitdiff
path: root/Doc/library/smtplib.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-09-01 13:51:09 +0000
committerGeorg Brandl <georg@python.org>2007-09-01 13:51:09 +0000
commit55ac8f0f26efdbbcb5cc197f9369d23d50bee908 (patch)
treea0d5b7128c055d8c767652dc3948c3404be06396 /Doc/library/smtplib.rst
parent1617457cff847fed9fadb01f1acf6ba8bb621726 (diff)
downloadcpython-git-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.gz
Get rid of the remaining versionadded/versionchanged directives.
Diffstat (limited to 'Doc/library/smtplib.rst')
-rw-r--r--Doc/library/smtplib.rst7
1 files changed, 0 insertions, 7 deletions
diff --git a/Doc/library/smtplib.rst b/Doc/library/smtplib.rst
index fd898ca2d1..61b90a8240 100644
--- a/Doc/library/smtplib.rst
+++ b/Doc/library/smtplib.rst
@@ -30,9 +30,6 @@ Protocol) and :rfc:`1869` (SMTP Service Extensions).
For normal use, you should only require the initialization/connect,
:meth:`sendmail`, and :meth:`quit` methods. An example is included below.
- .. versionchanged:: 2.6
- *timeout* was added.
-
.. class:: SMTP_SSL([host[, port[, local_hostname[, keyfile[, certfile[, timeout]]]]]])
@@ -46,9 +43,6 @@ Protocol) and :rfc:`1869` (SMTP Service Extensions).
timeout in seconds for the connection attempt (if not specified, or passed as
None, the global default timeout setting will be used).
- .. versionchanged:: 2.6
- *timeout* was added.
-
.. class:: LMTP([host[, port[, local_hostname]]])
@@ -61,7 +55,6 @@ Protocol) and :rfc:`1869` (SMTP Service Extensions).
socket, LMTP generally don't support or require any authentication, but your
mileage might vary.
- .. versionadded:: 2.6
A nice selection of exceptions is defined as well: