[issue10519] setobject.c no-op typo

2011-10-30 Thread Roundup Robot

Roundup Robot devn...@psf.upfronthosting.co.za 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 function calls (closes #10519)
http://hg.python.org/cpython/rev/664bf4f3a820

New changeset a5c4ae15b59d by Petri Lehtinen in branch 'default':
Avoid unnecessary recursive function calls (#closes #10519)
http://hg.python.org/cpython/rev/a5c4ae15b59d

--
nosy: +python-dev
resolution: accepted - fixed
stage:  - committed/rejected
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10519
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10519] setobject.c no-op typo

2011-10-30 Thread Roundup Robot

Roundup Robot devn...@psf.upfronthosting.co.za 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 (issue #10519)
http://hg.python.org/cpython/rev/b643458a0108

New changeset f634102aca01 by Petri Lehtinen in branch 'default':
Fix the return value of set_discard (issue #10519)
http://hg.python.org/cpython/rev/f634102aca01

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10519
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10519] setobject.c no-op typo

2011-10-30 Thread Roundup Robot

Roundup Robot devn...@psf.upfronthosting.co.za 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.org/cpython/rev/3bda54275817

New changeset a912ea48dd4c by Petri Lehtinen in branch 'default':
Add Misc/NEWS entry for issue #10519
http://hg.python.org/cpython/rev/a912ea48dd4c

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10519
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10519] setobject.c no-op typo

2011-10-29 Thread Petri Lehtinen

Changes by Petri Lehtinen pe...@digip.org:


--
nosy: +petri.lehtinen

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10519
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10519] setobject.c no-op typo

2011-10-29 Thread Armin Rigo

Changes by Armin Rigo ar...@users.sourceforge.net:


--
assignee: arigo - 

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10519
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10519] setobject.c no-op typo

2010-11-24 Thread Armin Rigo

New submission from Armin Rigo ar...@users.sourceforge.net:

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
messages: 122274
nosy: arigo
priority: normal
severity: normal
status: open
title: setobject.c no-op typo
type: behavior
versions: Python 2.7
Added file: http://bugs.python.org/file19796/diff1

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10519
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10519] setobject.c no-op typo

2010-11-24 Thread Antoine Pitrou

Changes by Antoine Pitrou pit...@free.fr:


--
nosy: +rhettinger, stutzbach
versions: +Python 3.1, Python 3.2

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10519
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10519] setobject.c no-op typo

2010-11-24 Thread Raymond Hettinger

Changes by Raymond Hettinger rhettin...@users.sourceforge.net:


--
assignee:  - rhettinger

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10519
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10519] setobject.c no-op typo

2010-11-24 Thread Raymond Hettinger

Raymond Hettinger rhettin...@users.sourceforge.net added the comment:

Try to match the whitespace convention of the surrounding code.

--
assignee: rhettinger - anthonybaxter
nosy: +anthonybaxter
resolution:  - accepted

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10519
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10519] setobject.c no-op typo

2010-11-24 Thread Raymond Hettinger

Raymond Hettinger rhettin...@users.sourceforge.net added the comment:

A few lines later, a similar change can be made for set_discard.

--
assignee: anthonybaxter - arigo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10519
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com