summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGiampaolo Rodola' <g.rodola@gmail.com>2013-04-10 13:49:47 (GMT)
committerGiampaolo Rodola' <g.rodola@gmail.com>2013-04-10 13:49:47 (GMT)
commit50331cbf0894bd18d8c89669297776153036bbbb (patch)
treeb30a7b38583fb157f604a03450a7ecabddac4cc7 /Misc
parent7d36e4f074a0141966394284f877bbe2270ccd93 (diff)
downloadcpython-50331cbf0894bd18d8c89669297776153036bbbb.zip
cpython-50331cbf0894bd18d8c89669297776153036bbbb.tar.gz
cpython-50331cbf0894bd18d8c89669297776153036bbbb.tar.bz2
Fix issue #17675: make socket repr() provide local and remote addresses (if any).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 38f6cde..ff0226a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,9 @@ Core and Builtins
Library
-------
+- Issue #17675: socket repr() provides local and remote addresses (if any).
+ Patch by Giampaolo Rodola'
+
- Issue #17093: Make the ABCs in importlib.abc provide default values or raise
reasonable exceptions for their methods to make them more amenable to super()
calls.