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 rhettinger
Recipients abacabadabacaba, belopolsky, eric.smith, ezio.melotti, mark.dickinson, r.david.murray, rhettinger, stutzbach
Date 2010-11-30.23:48:30
SpamBayes Score 0.0018230331
Marked as misclassified No
Message-id <1291160915.22.0.464239394418.issue8425@psf.upfronthosting.co.za>
In-reply-to
Content
Any new logic should make maximum use of existing tools:

def __isub__(self, other)
    if len(other) > len(self)*8:
        other = self & other
    . . .
    # rest of isub unchanged
History
Date User Action Args
2010-11-30 23:48:35rhettingersetrecipients: + rhettinger, mark.dickinson, belopolsky, eric.smith, stutzbach, ezio.melotti, r.david.murray, abacabadabacaba
2010-11-30 23:48:35rhettingersetmessageid: <1291160915.22.0.464239394418.issue8425@psf.upfronthosting.co.za>
2010-11-30 23:48:30rhettingerlinkissue8425 messages
2010-11-30 23:48:30rhettingercreate