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

2009-07-27 Thread Raymond Hettinger
Raymond Hettinger 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-27 Thread Raymond Hettinger
Raymond Hettinger added the comment: Good catch. Thanks. -- priority: -> high ___ Python tracker ___ ___ Python-bugs-list mailing li

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

2009-07-25 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- assignee: -> rhettinger nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list U

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

2009-07-25 Thread Shawn Smout
New submission from Shawn Smout : 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, 2]) as expected. As