[issue26892] debuglevel not honored in urllib

2016-05-13 Thread Senthil Kumaran
Senthil Kumaran added the comment: Thank you for the patch, Chi Hsuan Yen. -- assignee: -> orsenthil resolution: -> fixed stage: -> resolved status: open -> closed versions: +Python 3.5 ___ Python tracker __

[issue26892] debuglevel not honored in urllib

2016-05-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 63e23b2dedcc by Senthil Kumaran in branch '3.5': Issue #26892: Honor debuglevel flag in urllib.request.HTTPHandler. https://hg.python.org/cpython/rev/63e23b2dedcc New changeset e0ec68d46464 by Senthil Kumaran in branch 'default': merge from 3.5 http

[issue26892] debuglevel not honored in urllib

2016-04-30 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: Patch for the test. -- Added file: http://bugs.python.org/file42665/urllib_debuglevel_test.patch ___ Python tracker ___ _

[issue26892] debuglevel not honored in urllib

2016-04-30 Thread Senthil Kumaran
Senthil Kumaran added the comment: Hi Chi Hsuan, The patch looks good to me. Additional tests for the coverage of this will be helpful too. Thanks! -- nosy: +orsenthil ___ Python tracker _

[issue26892] debuglevel not honored in urllib

2016-04-30 Thread Chi Hsuan Yen
New submission from Chi Hsuan Yen: The following test program: import sys try: import urllib.request as urllib_request except: import urllib2 as urllib_request print(sys.version) handler = urllib_request.HTTPSHandler(debuglevel=1) opener = urllib_request.build_opener(handler) print(ope