(self, iterable)
| 693 | raise TypeError('Can not add a %r instance to a CScript' % other.__class__) |
| 694 | |
| 695 | def join(self, iterable): |
| 696 | # join makes no sense for a CScript() |
| 697 | raise NotImplementedError |
| 698 | |
| 699 | def __new__(cls, value=b''): |
| 700 | if isinstance(value, bytes) or isinstance(value, bytearray): |
no outgoing calls