summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMarco Strigl <mstrigl@suse.com>2018-06-19 13:20:58 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2018-06-19 13:20:58 (GMT)
commit936f03e7fafc28fd6fdfba11d162c776b89c0167 (patch)
treed6b0e312d49674aed7bde34ce2674ffe343e10fc /Misc
parent1261bfa83db30b1cf86c1fb816cc167db77874cd (diff)
downloadcpython-936f03e7fafc28fd6fdfba11d162c776b89c0167.zip
cpython-936f03e7fafc28fd6fdfba11d162c776b89c0167.tar.gz
cpython-936f03e7fafc28fd6fdfba11d162c776b89c0167.tar.bz2
bpo-33365: print the header values beside the keys (GH-6611)
with debuglevel=1 only the header keys got printed. With this change the header values get printed as well and the single header entries get '\n' as a separator.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-05-08-15-01-10.bpo-33365.SicsAd.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-05-08-15-01-10.bpo-33365.SicsAd.rst b/Misc/NEWS.d/next/Library/2018-05-08-15-01-10.bpo-33365.SicsAd.rst
new file mode 100644
index 0000000..41c273f
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-05-08-15-01-10.bpo-33365.SicsAd.rst
@@ -0,0 +1 @@
+Print the header values besides the header keys instead just the header keys if *debuglevel* is set to >0 in :mod:`http.client`. Patch by Marco Strigl.