summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2012-10-01 01:59:56 (GMT)
committerR David Murray <rdmurray@bitdance.com>2012-10-01 01:59:56 (GMT)
commit445d69c2bdca8e1b0ad4abec39ad0a74a6c2e899 (patch)
tree56fd3adf8c9011de068cfc6f2cdd3e7c9b758325 /Misc
parent842ca5f15d01a0b454299c933b42f5f31873d19f (diff)
downloadcpython-445d69c2bdca8e1b0ad4abec39ad0a74a6c2e899.zip
cpython-445d69c2bdca8e1b0ad4abec39ad0a74a6c2e899.tar.gz
cpython-445d69c2bdca8e1b0ad4abec39ad0a74a6c2e899.tar.bz2
More additions to whatsnew.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS8
1 files changed, 4 insertions, 4 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 32c862b..6b63bb3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -3386,9 +3386,9 @@ Library
- Issue #12011: signal.signal() and signal.siginterrupt() raise an OSError,
instead of a RuntimeError: OSError has an errno attribute.
-- Issue #3709: a flush_headers method to BaseHTTPRequestHandler which manages
- the sending of headers to output stream and flushing the internal headers
- buffer. Patch contribution by Andrew Schaaf
+- Issue #3709: add a flush_headers method to BaseHTTPRequestHandler, which
+ manages the sending of headers to output stream and flushing the internal
+ headers buffer. Patch contribution by Andrew Schaaf
- Issue #11743: Rewrite multiprocessing connection classes in pure Python.
@@ -4982,7 +4982,7 @@ Library
- Issue #3709: BaseHTTPRequestHandler will buffer the headers and write to
output stream only when end_headers is invoked. This is a speedup and an
- internal optimization. Patch by endian.
+ internal optimization. Patch by Andrew Shaaf.
- Issue #10220: Added inspect.getgeneratorstate. Initial patch by Rodolpho
Eckhardt.