# coding: utf-8 # AUTO-GENERATED FILE -- DO NOT EDIT """ Module implements the Mersenne Twister random number generator. """ class Random(object): """ Random() -> create a random number generator with its own internal state. """ def getrandbits(self, k): """ getrandbits(k) -> x. Generates an int with k random bits. """ return 1 def getstate(self): """ getstate() -> tuple containing the current state. """ return () def random(self): """ random() -> x in the interval [0, 1). """ return 1 def seed(self, n=None): """ seed([n]) -> None. Defaults to use urandom and falls back to a combination of the current time and the process identifier. """ return None def setstate(self, state): """ setstate(state) -> None. Restores generator state. """ return None __doc__ = 'Module implements the Mersenne Twister random number generator.' __file__ = '/Users/Shared/build/ide/build-files/build-temp/runtimes-release/__os__/macos/runtime-python3.10/lib/Python.framework/Versions/3.10/lib/python3.10/lib-dynload/_random.cpython-310-darwin.so' __loader__ = None __name__ = '_random' __package__ = '' __spec__ = None