(self, iterable)
| 463 | raise NotImplementedError |
| 464 | |
| 465 | def join(self, iterable): |
| 466 | # join makes no sense for a CScript() |
| 467 | raise NotImplementedError |
| 468 | |
| 469 | def __new__(cls, value=b''): |
| 470 | if isinstance(value, bytes) or isinstance(value, bytearray): |
no outgoing calls