summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2011-07-30 02:56:50 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2011-07-30 02:56:50 (GMT)
commit3d23fd649309fe80fdd1dee04b668fefb50c1b97 (patch)
tree912395e2e554691e6b32a3dbab7b1254a15381fc /Misc
parentf83e4acbaec012e01e11d5cc4ea6514cf2a7b34c (diff)
downloadcpython-3d23fd649309fe80fdd1dee04b668fefb50c1b97.zip
cpython-3d23fd649309fe80fdd1dee04b668fefb50c1b97.tar.gz
cpython-3d23fd649309fe80fdd1dee04b668fefb50c1b97.tar.bz2
Fix closes Issue11281 - smtplib.STMP gets source_address parameter, which adds the ability to bind to specific source address on a machine with multiple interfaces. Patch by Paulo Scardine.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5ab2d17..b0a747c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -246,6 +246,10 @@ Core and Builtins
Library
-------
+- Issue #11281: smtplib.STMP gets source_address parameter, which adds the
+ ability to bind to specific source address on a machine with multiple
+ interfaces. Patch by Paulo Scardine.
+
- Issue #12464: tempfile.TemporaryDirectory.cleanup() should not follow
symlinks: fix it. Patch by Petri Lehtinen.