[issue26806] IDLE not displaying RecursionError tracebacks

2016-04-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: In 3.6 just setting the recursion level to 20 produces following output on terminal: Unhandled server exception! Thread: SockThread Client Address: ('127.0.0.1', 41515) Unhandled exception in thread started by and a

[issue26804] Prioritize lowercase proxy variables in urllib.request

2016-04-19 Thread Senthil Kumaran
Senthil Kumaran added the comment: Hi Hans-Peter, I agree with Martin's comments and suggestion. If I understand the suggestion correctly, the only change will be a documentation change. Isn't it? Because getproxies_environment() in it's current form already fetches the lower_case proxy whi

[issue26806] IDLE not displaying RecursionError tracebacks

2016-04-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Experimentally found that minimal recursion level for 2.7 is 29, for 3.2-3.3 is 24, and for 3.4-3.6 is 25. 3.2 produces following output and restart the shell: Unhandled server exception! Thread: SockThread Client Add

[issue20116] urlparse.parse_qs should take argument for query separator

2016-04-19 Thread Senthil Kumaran
Senthil Kumaran added the comment: Luiz, The original question was about introducing a parameter to override query string separate ';'. If we do with enable or disable, then we should provide another option for query string separator. The OP provided one example of query string which had & a

[issue26780] Illustrate both binary operator conventions in PEP-8

2016-04-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9afe77ad549b by Senthil Kumaran in branch 'default': PEP-8 Update on Knuth style breaking of a long formula. #issue26780 https://hg.python.org/peps/rev/9afe77ad549b -- nosy: +python-dev ___ Python tracker

[issue26780] Illustrate both binary operator conventions in PEP-8

2016-04-19 Thread Senthil Kumaran
Senthil Kumaran added the comment: The patch is committed in changeset 9afe77ad549b. Thanks for update Brandon. Citing the original source and stating the rationale for this suggestion was a great addition. -- nosy: +orsenthil resolution: -> fixed stage: -> resolved status: open -> c

[issue26804] Prioritize lowercase proxy variables in urllib.request

2016-04-19 Thread Martin Panter
Martin Panter added the comment: It’s not just documentation, it is a real bug. If you run http_proxy="" HTTP_PROXY=http://bad-proxy python . . . the empty value of lowercase “http_proxy” should have priority over the other one. At the moment it depends on the order of os.environ.items(), whic

<    1   2