This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author krastanov-stefan
Recipients krastanov-stefan
Date 2012-06-16.09:09:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1339837749.11.0.973257724486.issue15085@psf.upfronthosting.co.za>
In-reply-to
Content
>>> set.union(set([1,2]), [3])
set([1, 2, 3])

>>> set.union([1,2], [3])
TypeError: descriptor 'union' requires a 'set' object but received a 'list'


It seems a bit inconsistent. Is it justified somehow?
History
Date User Action Args
2012-06-16 09:09:09krastanov-stefansetrecipients: + krastanov-stefan
2012-06-16 09:09:09krastanov-stefansetmessageid: <1339837749.11.0.973257724486.issue15085@psf.upfronthosting.co.za>
2012-06-16 09:09:08krastanov-stefanlinkissue15085 messages
2012-06-16 09:09:08krastanov-stefancreate