[issue6573] set union method ignores arguments appearing after the original set

2009-07-27 Thread Raymond Hettinger
Raymond Hettinger rhettin...@users.sourceforge.net added the comment: Good catch. Thanks. -- priority: - high ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6573 ___

[issue6573] set union method ignores arguments appearing after the original set

2009-07-27 Thread Raymond Hettinger
Raymond Hettinger rhettin...@users.sourceforge.net added the comment: Fixed. See r74226, r74227, r74228 and r74229. -- resolution: - fixed status: open - closed versions: +Python 2.6, Python 2.7, Python 3.1, Python 3.2 ___ Python tracker

[issue6573] set union method ignores arguments appearing after the original set

2009-07-25 Thread Shawn Smout
New submission from Shawn Smout silroq...@yahoo.com: When calling the union method of a set with several arguments, if one of those sets is the original set, all arguments appearing after it are ignored. For example: x = set() x.union(set([1]), x, set([2])) evaluates to set([1]), not set([1,

[issue6573] set union method ignores arguments appearing after the original set

2009-07-25 Thread Benjamin Peterson
Changes by Benjamin Peterson benja...@python.org: -- assignee: - rhettinger nosy: +rhettinger ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6573 ___