Lines Matching defs:seed
86 "seed",
111 methods: random(), seed(), getstate(), and setstate().
122 Optional argument x controls seeding, as for Random.seed().
125 self.seed(x)
128 def seed(self, a=None, version=2):
129 """Initialize internal state from a seed.
131 The only supported seed types are None, int, float,
160 raise TypeError('The only supported seed types are: None,\n'
163 super().seed(a)
814 def seed(self, *args, **kwds):
832 seed = _inst.seed
900 _os.register_at_fork(after_in_child=_inst.seed)