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/__init__.py | |
parent | 260bf67640724915ffefd0a5a7133318ece149da (diff) | |
download | numpy-185efe1bb746ad5b6ac23d106df12ad35a207d49.tar.gz |
DOC: clean up for moved references, remove ISeedSequence
Diffstat (limited to 'numpy/random/__init__.py')
-rw-r--r-- | numpy/random/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/random/__init__.py b/numpy/random/__init__.py index 799700899..1ceb5c4dd 100644 --- a/numpy/random/__init__.py +++ b/numpy/random/__init__.py @@ -183,7 +183,7 @@ from . import _common from . import _bounded_integers from ._generator import Generator, default_rng -from ._bit_generator import SeedSequence +from ._bit_generator import SeedSequence, BitGenerator from ._mt19937 import MT19937 from ._pcg64 import PCG64 from ._philox import Philox @@ -191,7 +191,7 @@ from ._sfc64 import SFC64 from .mtrand import * __all__ += ['Generator', 'RandomState', 'SeedSequence', 'MT19937', - 'Philox', 'PCG64', 'SFC64', 'default_rng'] + 'Philox', 'PCG64', 'SFC64', 'default_rng', 'BitGenerator'] def __RandomState_ctor(): |