(self, iterable)
| 687 | raise TypeError('Can not add a %r instance to a CScript' % other.__class__) |
| 688 | |
| 689 | def join(self, iterable): |
| 690 | # join makes no sense for a CScript() |
| 691 | raise NotImplementedError |
| 692 | |
| 693 | def __new__(cls, value=b''): |
| 694 | if isinstance(value, bytes) or isinstance(value, bytearray): |
no outgoing calls