from typing import Any __all__ = ['new', 'get_random_bytes'] from os import urandom class _UrandomRNG(object): def read(self, n: int) -> bytes:... def flush(self) -> None: ... def reinit(self) -> None: ... def close(self) -> None: ... def new(*args: Any, **kwargs: Any) -> _UrandomRNG: ... def atfork() -> None: ... get_random_bytes = urandom
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
__pycache__ | Folder | 0755 |
|
|
__init__.py | File | 1.77 KB | 0644 |
|
__init__.pyi | File | 367 B | 0644 |
|
random.py | File | 5.11 KB | 0644 |
|
random.pyi | File | 832 B | 0644 |
|