entropy.pyi 186 B

12345678910
  1. from typing import Optional
  2. from random import SystemRandom
  3. system_random : Optional[SystemRandom]
  4. def random_16() -> int:
  5. pass
  6. def between(first: int, last: int) -> int:
  7. pass