diff options
author | mattip <matti.picus@gmail.com> | 2019-10-13 09:13:05 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-10-13 09:13:05 +0300 |
commit | 185efe1bb746ad5b6ac23d106df12ad35a207d49 (patch) | |
tree | 737b9dd102c576756910764aa12da74c099b50b5 /numpy/random/_bit_generator.pyx | |
parent | 260bf67640724915ffefd0a5a7133318ece149da (diff) | |
download | numpy-185efe1bb746ad5b6ac23d106df12ad35a207d49.tar.gz |
DOC: clean up for moved references, remove ISeedSequence
Diffstat (limited to 'numpy/random/_bit_generator.pyx')
-rw-r--r-- | numpy/random/_bit_generator.pyx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/numpy/random/_bit_generator.pyx b/numpy/random/_bit_generator.pyx index b85f0a41b..471adcecd 100644 --- a/numpy/random/_bit_generator.pyx +++ b/numpy/random/_bit_generator.pyx @@ -482,13 +482,12 @@ cdef class BitGenerator(): Parameters ---------- - seed : {None, int, array_like[ints], ISeedSequence}, optional + seed : {None, int, array_like[ints], SeedSequence}, optional A seed to initialize the `BitGenerator`. If None, then fresh, unpredictable entropy will be pulled from the OS. If an ``int`` or ``array_like[ints]`` is passed, then it will be passed to - `SeedSequence` to derive the initial `BitGenerator` state. One may also - pass in an implementor of the `ISeedSequence` interface like - `SeedSequence`. + ~`numpy.randomSeedSequence` to derive the initial `BitGenerator` state. + One may also pass in a ~`numpy.random.SeedSequence` instance. Attributes ---------- |