(self, iterable)
| 426 | raise TypeError('Can not add a %r instance to a CScript' % other.__class__) |
| 427 | |
| 428 | def join(self, iterable): |
| 429 | # join makes no sense for a CScript() |
| 430 | raise NotImplementedError |
| 431 | |
| 432 | def __new__(cls, value=b''): |
| 433 | if isinstance(value, bytes) or isinstance(value, bytearray): |
no outgoing calls