bytes aren't mutable anymore.
This commit is contained in:
parent
b4c0b18633
commit
adc30d2836
|
@ -182,7 +182,7 @@ true::
|
|||
isinstance((), Sequence)
|
||||
not issubclass(tuple, MutableSequence)
|
||||
isinstance("", Sequence)
|
||||
issubclass(bytes, MutableSequence)
|
||||
issubclass(bytearray, MutableSequence)
|
||||
|
||||
The primary mechanism proposed here is to allow overloading the
|
||||
built-in functions ``isinstance()`` and ``issubclass()``. The
|
||||
|
|
Loading…
Reference in New Issue