[issue10519] setobject.c no-op typo

2011-10-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5c17394b0b95 by Petri Lehtinen in branch '3.2': Add Misc/NEWS entry for issue #10519 http://hg.python.org/cpython/rev/5c17394b0b95 New changeset 3bda54275817 by Petri Lehtinen in branch '2.7': Add Misc/NEWS entry for issue #10519 http://hg.python.o

[issue10519] setobject.c no-op typo

2011-10-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7ddc7b339a8b by Petri Lehtinen in branch '2.7': Fix the return value of set_discard (issue #10519) http://hg.python.org/cpython/rev/7ddc7b339a8b New changeset b643458a0108 by Petri Lehtinen in branch '3.2': Fix the return value of set_discard (issu

[issue10519] setobject.c no-op typo

2011-10-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 72de2ac8bb4f by Petri Lehtinen in branch '2.7': Avoid unnecessary recursive function calls (closes #10519) http://hg.python.org/cpython/rev/72de2ac8bb4f New changeset 664bf4f3a820 by Petri Lehtinen in branch '3.2': Avoid unnecessary recursive funct

[issue10519] setobject.c no-op typo

2011-10-29 Thread Armin Rigo
Changes by Armin Rigo : -- assignee: arigo -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue10519] setobject.c no-op typo

2011-10-29 Thread Petri Lehtinen
Changes by Petri Lehtinen : -- nosy: +petri.lehtinen ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue10519] setobject.c no-op typo

2010-11-24 Thread Raymond Hettinger
Raymond Hettinger added the comment: A few lines later, a similar change can be made for set_discard. -- assignee: anthonybaxter -> arigo ___ Python tracker ___

[issue10519] setobject.c no-op typo

2010-11-24 Thread Raymond Hettinger
Raymond Hettinger added the comment: Try to match the whitespace convention of the surrounding code. -- assignee: rhettinger -> anthonybaxter nosy: +anthonybaxter resolution: -> accepted ___ Python tracker __

[issue10519] setobject.c no-op typo

2010-11-24 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- assignee: -> rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue10519] setobject.c no-op typo

2010-11-24 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +rhettinger, stutzbach versions: +Python 3.1, Python 3.2 ___ Python tracker ___ ___ Python-bugs-l

[issue10519] setobject.c no-op typo

2010-11-24 Thread Armin Rigo
New submission from Armin Rigo : Probably a typo in setobject.c. The patch attached here does not really change anything but fixes the typo, leading to slightly clearer code and avoiding one level of recursion. All tests still pass. -- components: Interpreter Core files: diff1 messag