[issue18944] Minor mistake in test_set.py

2014-04-26 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed type: -> behavior ___ Python tracker ___ _

[issue18944] Minor mistake in test_set.py

2014-04-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset de6047ea33e6 by Terry Jan Reedy in branch '2.7': Issue #18944: backport typo fix http://hg.python.org/cpython/rev/de6047ea33e6 -- ___ Python tracker __

[issue18944] Minor mistake in test_set.py

2014-04-26 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: tim.peters -> terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue18944] Minor mistake in test_set.py

2014-04-26 Thread Berker Peksag
Berker Peksag added the comment: The same typo also needs to be fixed in the 2.7 branch: http://hg.python.org/cpython/file/2.7/Lib/test/test_set.py#l1618 -- nosy: +berker.peksag resolution: fixed -> stage: resolved -> needs patch status: closed -> open versions: +Python 2.7 __

[issue18944] Minor mistake in test_set.py

2013-09-06 Thread Tim Peters
Tim Peters added the comment: Right, I should have asked specifically about cpython commit privs ;-) Thanks for expounding! -- ___ Python tracker ___ __

[issue18944] Minor mistake in test_set.py

2013-09-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: Just to answer, anyone with Python snake has commit privileges of some sort but may not be setup to commit to cpython. I suspect Armin found this while review the test for pypy. I focus mostly on Idle, but on better days, will do little commits like this. --

[issue18944] Minor mistake in test_set.py

2013-09-06 Thread Tim Peters
Tim Peters added the comment: The fix is obviously correct ;-) - so what next? Armin & Terry, I don't know whether you have commit privileges. If you don't, assign it to me and I'll commit it. Removed 3.5 from the Versions list and added 3.3 and 3.4. -- nosy: +tim.peters versions: +

[issue18944] Minor mistake in test_set.py

2013-09-06 Thread Tim Peters
Changes by Tim Peters : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___ ___ Pytho

[issue18944] Minor mistake in test_set.py

2013-09-06 Thread Roundup Robot
Roundup Robot added the comment: New changeset b6059bac8a9c by Tim Peters in branch '3.3': Issue 18944: fix a 1-character typo in test_set.py. http://hg.python.org/cpython/rev/b6059bac8a9c New changeset 4b64166d5abb by Tim Peters in branch 'default': Merge 3.3 into default. http://hg.python.org

[issue18944] Minor mistake in test_set.py

2013-09-06 Thread Armin Rigo
Changes by Armin Rigo : -- assignee: -> tim.peters ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue18944] Minor mistake in test_set.py

2013-09-06 Thread Tim Peters
Changes by Tim Peters : -- components: +Tests -Interpreter Core ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18944] Minor mistake in test_set.py

2013-09-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: The typo causes 1 test to run 5 times instead of 5 tests 1 each. After fix, all pass on Win7, 3.4.0a1 (where fix is on line 1675 instead of 1618). -- nosy: +rhettinger, terry.reedy ___ Python tracker

[issue18944] Minor mistake in test_set.py

2013-09-06 Thread Armin Rigo
New submission from Armin Rigo: Found a minor mistake in test_set.py. Patch attached. -- components: Interpreter Core files: test_set.diff keywords: patch messages: 197060 nosy: arigo priority: normal severity: normal status: open title: Minor mistake in test_set.py versions: Python 3.5