(self, iterable)
| 681 | raise TypeError('Can not add a %r instance to a CScript' % other.__class__) |
| 682 | |
| 683 | def join(self, iterable): |
| 684 | # join makes no sense for a CScript() |
| 685 | raise NotImplementedError |
| 686 | |
| 687 | def __new__(cls, value=b''): |
| 688 | if isinstance(value, bytes) or isinstance(value, bytearray): |
no outgoing calls