summaryrefslogtreecommitdiff
path: root/numpy/random/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/random/__init__.py')
-rw-r--r--numpy/random/__init__.py4
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():