summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRoss Lagerwall <rosslagerwall@gmail.com>2012-07-07 16:40:32 (GMT)
committerRoss Lagerwall <rosslagerwall@gmail.com>2012-07-07 16:40:32 (GMT)
commit121d59ffa98d20b20e849b4c7333a723803f6798 (patch)
tree2a0cc915b2805f336f8b5d62762f92ae98389537 /Misc
parent9a9c28ce7a051b37a91e4fc7aef70bcdcda25047 (diff)
downloadcpython-121d59ffa98d20b20e849b4c7333a723803f6798.zip
cpython-121d59ffa98d20b20e849b4c7333a723803f6798.tar.gz
cpython-121d59ffa98d20b20e849b4c7333a723803f6798.tar.bz2
#15277: Fix a resource leak in support.py when IPv6 is disabled.
The leak occurred by setting: echo 1 > /proc/sys/net/ipv6/conf/all/disable_ipv6 before running test_support. Patch by Brian Brazil.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a109baf..dada87b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -74,6 +74,12 @@ Tools/Demos
* C frames that are garbage-collecting
* C frames that are due to the invocation of a PyCFunction
+Tests
+-----
+
+- Issue #15277: Fix a resource leak in support.py when IPv6 is disabled.
+ Patch by Brian Brazil.
+
Build
-----