summaryrefslogtreecommitdiff
path: root/doc/source/reference
diff options
context:
space:
mode:
authorRalf Gommers <ralf.gommers@gmail.com>2019-09-15 11:04:00 -0700
committerGitHub <noreply@github.com>2019-09-15 11:04:00 -0700
commit33d5f9c23da18ed3b5ed5b8efc5c26297ed2d7ea (patch)
treeec12692c24121433a88f4d417c9cadc3440f2493 /doc/source/reference
parente4de01d073f554dbed4a1f25fe6bb8cbb4e40b5e (diff)
parent62e384a7329a5ed11d536ae24522fbab264c6683 (diff)
downloadnumpy-33d5f9c23da18ed3b5ed5b8efc5c26297ed2d7ea.tar.gz
Merge pull request #14498 from mattip/random-namespace
MAINT: remove the entropy c-extension module
Diffstat (limited to 'doc/source/reference')
-rw-r--r--doc/source/reference/random/entropy.rst6
-rw-r--r--doc/source/reference/random/index.rst4
-rw-r--r--doc/source/reference/random/new-or-different.rst3
3 files changed, 0 insertions, 13 deletions
diff --git a/doc/source/reference/random/entropy.rst b/doc/source/reference/random/entropy.rst
deleted file mode 100644
index 0664da6f9..000000000
--- a/doc/source/reference/random/entropy.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-System Entropy
-==============
-
-.. module:: numpy.random.entropy
-
-.. autofunction:: random_entropy
diff --git a/doc/source/reference/random/index.rst b/doc/source/reference/random/index.rst
index 0b7a0bfad..b0283f3a7 100644
--- a/doc/source/reference/random/index.rst
+++ b/doc/source/reference/random/index.rst
@@ -151,9 +151,6 @@ What's New or Different
select distributions
* Optional ``out`` argument that allows existing arrays to be filled for
select distributions
-* `~entropy.random_entropy` provides access to the system
- source of randomness that is used in cryptographic applications (e.g.,
- ``/dev/urandom`` on Unix).
* All BitGenerators can produce doubles, uint64s and uint32s via CTypes
(`~.PCG64.ctypes`) and CFFI (`~.PCG64.cffi`). This allows the bit generators
to be used in numba.
@@ -203,7 +200,6 @@ Features
new-or-different
Comparing Performance <performance>
extending
- Reading System Entropy <entropy>
Original Source
~~~~~~~~~~~~~~~
diff --git a/doc/source/reference/random/new-or-different.rst b/doc/source/reference/random/new-or-different.rst
index 5442f46c9..c8815f98f 100644
--- a/doc/source/reference/random/new-or-different.rst
+++ b/doc/source/reference/random/new-or-different.rst
@@ -45,9 +45,6 @@ Feature Older Equivalent Notes
And in more detail:
-* `~.entropy.random_entropy` provides access to the system
- source of randomness that is used in cryptographic applications (e.g.,
- ``/dev/urandom`` on Unix).
* Simulate from the complex normal distribution
(`~.Generator.complex_normal`)
* The normal, exponential and gamma generators use 256-step Ziggurat