[issue25005] webbrowser breaks on query strings with multiple fields on Windows

2015-09-06 Thread Larry Hastings
Changes by Larry Hastings : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs

[issue8232] webbrowser.open incomplete on Windows

2015-09-06 Thread Larry Hastings
Larry Hastings added the comment: This was backed out of 3.5, as we discovered it introduced a security hole just before 3.5.0 shipped. (See issue 25005 for more.) Since it's been backed out, I've reopened the issue. However I've moved it forward to 3.6, as it's no longer viable to accept fo

[issue8232] webbrowser.open incomplete on Windows

2015-09-06 Thread Larry Hastings
Changes by Larry Hastings : -- nosy: -larry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue24748] Change of behavior for importlib between 3.4 and 3.5 with DLL loading

2015-09-06 Thread Roundup Robot
Roundup Robot added the comment: New changeset 087464c9f982 by Nick Coghlan in branch '3.5': Close #24748: Restore imp.load_dynamic compatibility https://hg.python.org/cpython/rev/087464c9f982 -- nosy: +python-dev ___ Python tracker

[issue24305] The new import system makes it inconvenient to correctly issue a deprecation warning for a module

2015-09-06 Thread Roundup Robot
Roundup Robot added the comment: New changeset 94966dfd3bd3 by Larry Hastings in branch '3.5': Issue #24305: Prevent import subsystem stack frames from being counted https://hg.python.org/cpython/rev/94966dfd3bd3 -- nosy: +python-dev ___ Python tracke

[issue24917] time_strftime() Buffer Over-read

2015-09-06 Thread Roundup Robot
Roundup Robot added the comment: New changeset c31dad22c80d by Steve Dower in branch '3.5': Issue #24917: time_strftime() buffer over-read. https://hg.python.org/cpython/rev/c31dad22c80d New changeset f185917498ca by Steve Dower in branch '3.4': Issue #24917: time_strftime() buffer over-read. ht

[issue8232] webbrowser.open incomplete on Windows

2015-09-06 Thread Roundup Robot
Roundup Robot added the comment: New changeset aa60b34d5200 by Steve Dower in branch '3.5': Issue #25005: Backout fix for #8232 because of use of unsafe subprocess.call(shell=True) https://hg.python.org/cpython/rev/aa60b34d5200 New changeset 7d320c3bf9c6 by Larry Hastings in branch '3.5': Merge

[issue25005] webbrowser breaks on query strings with multiple fields on Windows

2015-09-06 Thread Roundup Robot
Roundup Robot added the comment: New changeset aa60b34d5200 by Steve Dower in branch '3.5': Issue #25005: Backout fix for #8232 because of use of unsafe subprocess.call(shell=True) https://hg.python.org/cpython/rev/aa60b34d5200 New changeset 7d320c3bf9c6 by Larry Hastings in branch '3.5': Merge

[issue25015] Idle: scroll Text faster with mouse wheel

2015-09-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: The SO OP reported Idle Shell and Editor behavior. I retested minimal tk.Text(root).pack(), eliminating Idle as a factor, before and after changing system lines setting from 3 to 9, and got the constant same behavior. The now too small 50 pixels seems about

[issue8232] webbrowser.open incomplete on Windows

2015-09-06 Thread Steve Dower
Steve Dower added the comment: Here's an alternate patch I proposed on #25005 before we decided to back out the change. The problem is that subprocess.call() with shell=True is unsafe because we don't escape shell operators (such as &, <, >, |). The fix in this patch is to allow passing argum

[issue23517] datetime.utcfromtimestamp rounds results incorrectly

2015-09-06 Thread STINNER Victor
STINNER Victor added the comment: I understand that I have to implement a new rounding mode. The code will be new, I'm not condifent enough to push it immedialty into python 3.5. IMHO a buggy rounding mode is worse than keeping the current rounding mode. The rounding mode changed in python 3.3. T

[issue24889] Idle: always start with focus

2015-09-06 Thread Roundup Robot
Roundup Robot added the comment: New changeset 741b033c5290 by Terry Jan Reedy in branch '2.7': Issue #24889: When starting Idle, force focus onto Idle window if not already https://hg.python.org/cpython/rev/741b033c5290 New changeset d7449bac2c6d by Terry Jan Reedy in branch '3.4': Issue #24889

[issue24889] Idle: always start with focus

2015-09-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: Thanks for the research and verification that this is harmless. It has been a daily annoyance. -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker

[issue25015] Idle: scroll Text faster with mouse wheel

2015-09-06 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: You can measure your mouse speed with following pure Tcl/Tk script. -- Added file: http://bugs.python.org/file40385/MouseWheelTrace.tcl ___ Python tracker ___

[issue25015] Idle: scroll Text faster with mouse wheel

2015-09-06 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Or with following Python script. -- Added file: http://bugs.python.org/file40386/MouseWheelTrace.py ___ Python tracker ___ ___

[issue25016] defaultdict's pop gives a KeyError

2015-09-06 Thread Chase Albert
New submission from Chase Albert: `defaultdict(list).pop(1)` raises a KeyError, this is not what I expected (I expected an empty list). -- components: Library (Lib) messages: 250080 nosy: rob.anyone priority: normal severity: normal status: open title: defaultdict's pop gives a KeyError

[issue25016] defaultdict's pop gives a KeyError

2015-09-06 Thread Martin Panter
Martin Panter added the comment: I think this is by design. Under it says “__missing__() is _not_ called for any operations besides __getitem__().” What gave you the impression that pop() should return a d

[issue24748] Change of behavior for importlib between 3.4 and 3.5 with DLL loading

2015-09-06 Thread Nick Coghlan
Nick Coghlan added the comment: Just noting explicitly that this has been forward merged to the default branch by Steve Dower after Larry merged in the latest 3.5.0 rc changes. -- ___ Python tracker __

[issue23517] datetime.utcfromtimestamp rounds results incorrectly

2015-09-06 Thread Larry Hastings
Larry Hastings added the comment: Is it appropriate to make this change as a "bug fix", in already-released versions of Python? Would you be happy or sad if you updated your Python from 3.x.y to 3.x.y+1 and the rounding method used when converting floats to datetime stamps changed? -

[issue24813] Idle Help dialogs shouldn't be modal

2015-09-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: Or we can broaden this in the other direction, to redesign AboutDialog. -- ___ Python tracker ___ __

<    1   2