summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-08-11 13:38:10 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-08-11 13:38:10 (GMT)
commit00091cada63a756937a39d5e6967666301154b57 (patch)
treea184d24e4ed961701500dccb1560c753788af353 /Misc
parent91ecc5667fa4c336087e1c3cd16aeedd916dde81 (diff)
downloadcpython-00091cada63a756937a39d5e6967666301154b57.zip
cpython-00091cada63a756937a39d5e6967666301154b57.tar.gz
cpython-00091cada63a756937a39d5e6967666301154b57.tar.bz2
Merged revisions 83944 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83944 | antoine.pitrou | 2010-08-11 15:31:33 +0200 (mer., 11 août 2010) | 6 lines Issue #9550: a BufferedReader could issue an additional read when the original read request had been satisfied, which can block indefinitely when the underlying raw IO channel is e.g. a socket. Report and original patch by Jason V. Miller. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS5
2 files changed, 6 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 5a291e9..62be7ab 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -524,6 +524,7 @@ Trent Mick
Aristotelis Mikropoulos
Damien Miller
Chad Miller
+Jason V. Miller
Jay T. Miller
Roman Milner
Andrii V. Mishkovskyi
diff --git a/Misc/NEWS b/Misc/NEWS
index e5d3c43..7ce826d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -93,6 +93,11 @@ C-API
Library
-------
+- Issue #9550: a BufferedReader could issue an additional read when the
+ original read request had been satisfied, which could block indefinitely
+ when the underlying raw IO channel was e.g. a socket. Report and original
+ patch by Jason V. Miller.
+
- Issue #6915: Under Windows, os.listdir() didn't release the Global
Interpreter Lock around all system calls. Original patch by Ryan Kelly.