(self, min, max, seed=None)
| 344 | """Instances evaluate to integer sampling without replacement from the given interval""" # noqa: E501 |
| 345 | |
| 346 | def __init__(self, min, max, seed=None): |
| 347 | # type: (int, int, Optional[int]) -> None |
| 348 | self._seed = seed |
| 349 | self.seq = RandomEnumeration(min, max, seed) |
| 350 | super(RandEnum, self).__init__(min, max) |
| 351 | |
| 352 | def _command_args(self): |
| 353 | # type: () -> str |
nothing calls this directly
no test coverage detected