summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorCharles-François Natali <neologix@free.fr>2012-01-02 14:47:29 (GMT)
committerCharles-François Natali <neologix@free.fr>2012-01-02 14:47:29 (GMT)
commit366999a0119e860d1e3137ef6bb56b3b913840f4 (patch)
tree0b636e2df504724399b469823aaf5b4d07579c6a /Misc
parent70efbefcc5c26e675c064f50dd2c64cc375f20ac (diff)
downloadcpython-366999a0119e860d1e3137ef6bb56b3b913840f4.zip
cpython-366999a0119e860d1e3137ef6bb56b3b913840f4.tar.gz
cpython-366999a0119e860d1e3137ef6bb56b3b913840f4.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 ef21b7f..6ad3f8c 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -643,6 +643,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 7e6ce40..da9e9de 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -345,6 +345,9 @@ Tests
Extension Modules
-----------------
+- Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by
+ Vilmos Nebehaj.
+
- Issue #13159: FileIO and BZ2File now use a linear-time buffer growth
strategy instead of a quadratic-time one.