summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-03-02 22:41:42 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-03-02 22:41:42 (GMT)
commit7d49bba969a6ca490ade6aa908e350d3c05f76f4 (patch)
treef3c3dbd9573fda44d86f40f9c1b9ff9fa7707529 /Misc
parentce45a967c2d82a6b3112c5621993f5fec1dd5ea1 (diff)
downloadcpython-7d49bba969a6ca490ade6aa908e350d3c05f76f4.zip
cpython-7d49bba969a6ca490ade6aa908e350d3c05f76f4.tar.gz
cpython-7d49bba969a6ca490ade6aa908e350d3c05f76f4.tar.bz2
give httplib.IncompleteRead a more sane repr #4308
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 2438d1e..426cd9a 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -765,6 +765,7 @@ Dik Winter
Blake Winton
Jean-Claude Wippler
Lars Wirzenius
+Chris Withers
Stefan Witzel
David Wolever
Klaus-Juergen Wolf
diff --git a/Misc/NEWS b/Misc/NEWS
index a9a249a..8c524bb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -168,6 +168,9 @@ Core and Builtins
Library
-------
+- Issue #4308: httplib.IncompleteRead's repr doesn't include all of the data all
+ ready received.
+
- Issue #5401: Fixed a performance problem in mimetypes when ``from mimetypes
import guess_extension`` was used.