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 eric.araujo
Recipients SilentGhost, daniel.urban, docs@python, eric.araujo, iuridiniz, rhettinger, stutzbach
Date 2010-11-21.00:46:10
SpamBayes Score 0.00087423844
Marked as misclassified No
Message-id <1290300371.69.0.607966739451.issue9746@psf.upfronthosting.co.za>
In-reply-to
Content
Patch committed in r86625 (py3k), r86627 (3.1) and r86627 (2.7).

Regarding API conformance, I ran this simple test, courtesy of Daniel in msg109784:

>>> for cls in str, bytes, bytearray, list, tuple, range:
...     print(cls, [method for method in set(dir(collections.Sequence)) - set(dir(cls)) if not method.startswith('_')])
... 
<class 'str'> []
<class 'bytes'> []
<class 'bytearray'> []
<class 'list'> []
<class 'tuple'> []
<class 'range'> []

Which means we can close this.  Thanks everyone!
History
Date User Action Args
2010-11-21 00:46:11eric.araujosetrecipients: + eric.araujo, rhettinger, stutzbach, SilentGhost, daniel.urban, docs@python, iuridiniz
2010-11-21 00:46:11eric.araujosetmessageid: <1290300371.69.0.607966739451.issue9746@psf.upfronthosting.co.za>
2010-11-21 00:46:10eric.araujolinkissue9746 messages
2010-11-21 00:46:10eric.araujocreate