summaryrefslogtreecommitdiff
path: root/numpy/random
diff options
context:
space:
mode:
authorLeonaTaric <numpy@huawei.com>2023-01-09 19:02:05 +0800
committerLeonaTaric <numpy@huawei.com>2023-01-09 19:02:05 +0800
commit969c748cf6539e5b31b52ad13c7a814976735719 (patch)
tree543c18647300b47edc083048a133223d783050f5 /numpy/random
parent948fb6332586cc7952eb2ec93d99a9a1b73a8bc5 (diff)
downloadnumpy-969c748cf6539e5b31b52ad13c7a814976735719.tar.gz
去掉note
Diffstat (limited to 'numpy/random')
-rw-r--r--numpy/random/bit_generator.pyx5
1 files changed, 2 insertions, 3 deletions
diff --git a/numpy/random/bit_generator.pyx b/numpy/random/bit_generator.pyx
index 1a11cbe33..47804c487 100644
--- a/numpy/random/bit_generator.pyx
+++ b/numpy/random/bit_generator.pyx
@@ -260,7 +260,7 @@ cdef class SeedSequence():
----------
entropy : {None, int, sequence[int]}, optional
The entropy for creating a `SeedSequence`.
- note: all integer values must be non-negative.
+ All integer values must be non-negative.
spawn_key : {(), sequence[int]}, optional
An additional source of entropy based on the position of this
`SeedSequence` in the tree of such objects created with the
@@ -491,8 +491,7 @@ cdef class BitGenerator():
``array_like[ints]`` is passed, then it will be passed to
`~numpy.random.SeedSequence` to derive the initial `BitGenerator` state.
One may also pass in a `SeedSequence` instance.
-
- note: all integer values must be non-negative.
+ All integer values must be non-negative.
Attributes
----------