8000 API: rearrange the cython files in numpy.random by mattip · Pull Request #14608 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

API: rearrange the cython files in numpy.random #14608

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Oct 17, 2019
Prev Previous commit
DOC: fix from review
  • Loading branch information
mattip committed Oct 17, 2019
commit 1531642c40f5e0536837833fb23e82e39aba1fa0
2 changes: 1 addition & 1 deletion numpy/random/_bit_generator.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ cdef class BitGenerator():
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
~`numpy.randomSeedSequence` to derive the initial `BitGenerator` state.
~`numpy.random.SeedSequence` to derive the initial `BitGenerator` state.
One may also pass in a `SeedSequence` instance.

Attributes
Expand Down
0