(self, iterable)
| 538 | raise TypeError('Can not add a %r instance to a CScript' % other.__class__) |
| 539 | |
| 540 | def join(self, iterable): |
| 541 | # join makes no sense for a CScript() |
| 542 | raise NotImplementedError |
| 543 | |
| 544 | def __new__(cls, value=b''): |
| 545 | if isinstance(value, bytes) or isinstance(value, bytearray): |
no outgoing calls