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 berdario
Recipients berdario, ezio.melotti, rhettinger, stutzbach
Date 2015-11-26.11:43:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1448538190.71.0.421147414183.issue25737@psf.upfronthosting.co.za>
In-reply-to
Content
Ok, basically `Sequence` does not implement `__subclasshook__` and is manually hardcoded to

```
Sequence.register(tuple)
Sequence.register(str)
Sequence.register(range)
Sequence.register(memoryview)
```


This is not by design, is it?
History
Date User Action Args
2015-11-26 11:43:10berdariosetrecipients: + berdario, rhettinger, stutzbach, ezio.melotti
2015-11-26 11:43:10berdariosetmessageid: <1448538190.71.0.421147414183.issue25737@psf.upfronthosting.co.za>
2015-11-26 11:43:10berdariolinkissue25737 messages
2015-11-26 11:43:10berdariocreate