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 turgon
Recipients belopolsky, georg.brandl, rhettinger, turgon
Date 2012-12-23.19:27:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1356290848.21.0.313864118984.issue7263@psf.upfronthosting.co.za>
In-reply-to
Content
set.intersection and frozenset.intersection docstrings are back to the wrong two-sets-only version in Python 3.3 (Python 2.7 is not affected):

"""
intersection(...)
    Return the intersection of two sets as a new set.
    
    (i.e. all elements that are in both sets.)
"""

 The correct docstring should be the one already submitted by Alexander Belopolsky:

"""
intersection(...)
    Return the intersection of two or more sets as a new set.
    
    (i.e. all elements that are in all sets.)
"""

 Thanks everyone for your great work and Merry Christmas!
History
Date User Action Args
2012-12-23 19:27:28turgonsetrecipients: + turgon, georg.brandl, rhettinger, belopolsky
2012-12-23 19:27:28turgonsetmessageid: <1356290848.21.0.313864118984.issue7263@psf.upfronthosting.co.za>
2012-12-23 19:27:28turgonlinkissue7263 messages
2012-12-23 19:27:28turgoncreate