(self, size=None, chars=_DEFAULT_CHARS)
| 547 | _DEFAULT_CHARS = b"".join(chb(c) for c in range(256)) |
| 548 | |
| 549 | def __init__(self, size=None, chars=_DEFAULT_CHARS): |
| 550 | # type: (Optional[Union[int, RandNum]], bytes) -> None |
| 551 | if size is None: |
| 552 | size = RandNumExpo(0.01) |
| 553 | self.size = size |
| 554 | self.chars = chars |
| 555 | |
| 556 | def _command_args(self): |
| 557 | # type: () -> str |
nothing calls this directly
no test coverage detected