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 belopolsky
Recipients belopolsky, georg.brandl
Date 2009-11-04.16:24:32
SpamBayes Score 0.00015386223
Marked as misclassified No
Message-id <1257351879.79.0.961594941998.issue7263@psf.upfronthosting.co.za>
In-reply-to
Content
"""
intersection(...)
    Return the intersection of two sets as a new set.
    
    (i.e. all elements that are in both sets.)
"""

Is incorrect because set.intersection takes two or more sets.

Attached patch changes that to

"""
intersection(...)
    Return the intersection of two or more sets as a new set.
    
    (i.e. all elements that are in all sets.)
"""
History
Date User Action Args
2009-11-04 16:24:39belopolskysetrecipients: + belopolsky, georg.brandl
2009-11-04 16:24:39belopolskysetmessageid: <1257351879.79.0.961594941998.issue7263@psf.upfronthosting.co.za>
2009-11-04 16:24:32belopolskylinkissue7263 messages
2009-11-04 16:24:32belopolskycreate