summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
Diffstat (limited to 'numpy')
-rw-r--r--numpy/random/__init__.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/numpy/random/__init__.py b/numpy/random/__init__.py
index 2d495d67e..e7eecc5cd 100644
--- a/numpy/random/__init__.py
+++ b/numpy/random/__init__.py
@@ -177,7 +177,12 @@ __all__ = [
'zipf',
]
-from . import mtrand
+# add these for module-freeze analysis (like PyInstaller)
+from . import _pickle
+from . import common
+from . import bounded_integers
+from . import entropy
+
from .mtrand import *
from .generator import Generator, default_rng
from .bit_generator import SeedSequence