summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorCharles-François Natali <neologix@free.fr>2012-01-02 14:38:27 (GMT)
committerCharles-François Natali <neologix@free.fr>2012-01-02 14:38:27 (GMT)
commit3aa59e327c76e7317a2776ead387fdb33aebe7e5 (patch)
treed8f4f3b08168e5015570d5beb56d457942685081 /Misc
parent8448dfa17d4c3bf9009bdb600640d7e550bad734 (diff)
downloadcpython-3aa59e327c76e7317a2776ead387fdb33aebe7e5.zip
cpython-3aa59e327c76e7317a2776ead387fdb33aebe7e5.tar.gz
cpython-3aa59e327c76e7317a2776ead387fdb33aebe7e5.tar.bz2
Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by
Vilmos Nebehaj.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index c547c31..5743a02 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -590,6 +590,7 @@ John Nagle
Takahiro Nakayama
Travers Naran
Charles-François Natali
+Vilmos Nebehaj
Fredrik Nehr
Trent Nelson
Tony Nelson
diff --git a/Misc/NEWS b/Misc/NEWS
index 4f921a9..82551d2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -368,6 +368,9 @@ Library
Extension Modules
-----------------
+- Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by
+ Vilmos Nebehaj.
+
- Issue #13159: FileIO, BZ2File, and the built-in file class now use a
linear-time buffer growth strategy instead of a quadratic one.