Lines Matching full:seed
51 __all__ = ["Random","seed","random","uniform","randint","choice","sample",
83 methods: random(), seed(), getstate(), setstate() and jumpahead().
94 Optional argument x controls seeding, as for Random.seed().
97 self.seed(x)
100 def seed(self, a=None):
116 super(Random, self).seed(a)
653 def seed(self, a=None):
752 """Set the Wichmann-Hill seed from (x, y, z).
769 # Zero is a poor seed, so substitute 1
775 """Seed from hashable object's hash code.
781 This is obsolete, provided for compatibility with the seed routine
782 used prior to Python 2.1. Use the .seed() method instead.
824 seed = jumpahead = _stub
880 seed = _inst.seed