[issue33365] http/client.py does not print correct headers in debug

2018-06-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for your contribution Marco! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue33365] http/client.py does not print correct headers in debug

2018-06-19 Thread miss-islington
miss-islington added the comment: New changeset 34cd4821ed97639896f85bdf0c0d5c75b23f8a76 by Miss Islington (bot) in branch '3.6': bpo-33365: print the header values beside the keys (GH-6611) https://github.com/python/cpython/commit/34cd4821ed97639896f85bdf0c0d5c75b23f8a76 --

[issue33365] http/client.py does not print correct headers in debug

2018-06-19 Thread miss-islington
miss-islington added the comment: New changeset 2edcf0a3db608457f42f4e4b74aff28237b4c91b by Miss Islington (bot) in branch '3.7': bpo-33365: print the header values beside the keys (GH-6611) https://github.com/python/cpython/commit/2edcf0a3db608457f42f4e4b74aff28237b4c91b -- nosy:

[issue33365] http/client.py does not print correct headers in debug

2018-06-19 Thread miss-islington
Change by miss-islington : -- pull_requests: +7397 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33365] http/client.py does not print correct headers in debug

2018-06-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 936f03e7fafc28fd6fdfba11d162c776b89c0167 by Serhiy Storchaka (Marco Strigl) in branch 'master': bpo-33365: print the header values beside the keys (GH-6611) https://github.com/python/cpython/commit/936f03e7fafc28fd6fdfba11d162c776b89c0167

[issue33365] http/client.py does not print correct headers in debug

2018-06-19 Thread miss-islington
Change by miss-islington : -- pull_requests: +7398 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33365] http/client.py does not print correct headers in debug

2018-05-08 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- nosy: +barry, r.david.murray versions: -Python 3.4, Python 3.5 ___ Python tracker ___

[issue33365] http/client.py does not print correct headers in debug

2018-04-26 Thread Marco Strigl
Change by Marco Strigl : -- pull_requests: +6307 stage: -> patch review ___ Python tracker ___

[issue33365] http/client.py does not print correct headers in debug

2018-04-26 Thread Marco Strigl
New submission from Marco Strigl : Consider the following script: try: from urllib import request except ImportError: import urllib2 as request handler = request.HTTPSHandler(debuglevel=1) opener = request.build_opener(handler) f =