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 r.david.murray
Recipients krastanov-stefan, r.david.murray
Date 2012-06-16.14:02:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1339855367.95.0.979506812525.issue15085@psf.upfronthosting.co.za>
In-reply-to
Content
By calling 'set.union' you are calling the method on the class.  When you call a method directly on a class object, you have to explicitly pass in 'self'.  Thus the first argument when you call it like that must be a set object.
History
Date User Action Args
2012-06-16 14:02:47r.david.murraysetrecipients: + r.david.murray, krastanov-stefan
2012-06-16 14:02:47r.david.murraysetmessageid: <1339855367.95.0.979506812525.issue15085@psf.upfronthosting.co.za>
2012-06-16 14:02:45r.david.murraylinkissue15085 messages
2012-06-16 14:02:45r.david.murraycreate