Close #18690: register memoryview with Sequence ABC

This commit is contained in:
Nick Coghlan 2013-10-02 22:31:47 +10:00
parent a0f169cde8
commit 45163ccce4
4 changed files with 10 additions and 0 deletions

View file

@ -643,6 +643,7 @@ class Sequence(Sized, Iterable, Container):
Sequence.register(tuple)
Sequence.register(str)
Sequence.register(range)
Sequence.register(memoryview)
class ByteString(Sequence):