summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorHye-Shik Chang <hyeshik@gmail.com>2004-06-05 13:30:56 (GMT)
committerHye-Shik Chang <hyeshik@gmail.com>2004-06-05 13:30:56 (GMT)
commit39aef79821d9ad8d428b14b59190bd0ca0c550d9 (patch)
tree5421d50fc7b9fb7e4e30d44d61d37a2954ed891f /Misc
parent5962f457b48997dbfb8bcb0769b57cd3fab96148 (diff)
downloadcpython-39aef79821d9ad8d428b14b59190bd0ca0c550d9.zip
cpython-39aef79821d9ad8d428b14b59190bd0ca0c550d9.tar.gz
cpython-39aef79821d9ad8d428b14b59190bd0ca0c550d9.tar.bz2
Fix a bug that robotparser starves memory when the server responses
in HTTP/0.9 due to dissonance of httplib.LineAndFileWrapper and urllib.addbase.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9f7842ec..7584d45 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -322,6 +322,8 @@ Extension modules
Library
-------
+- urllib.urlopen().readline() now handles HTTP/0.9 correctly.
+
- refactored site.py into functions. Also wrote regression tests for the
module.