(self, iterable)
| 546 | raise NotImplementedError |
| 547 | |
| 548 | def join(self, iterable): |
| 549 | # join makes no sense for a CScript() |
| 550 | raise NotImplementedError |
| 551 | |
| 552 | def __new__(cls, value=b''): |
| 553 | if isinstance(value, bytes) or isinstance(value, bytearray): |
no outgoing calls