Skip to content

Commit bae1ad4

Browse files
committed
Remove random from numpy initializaation sequence
1 parent 432055b commit bae1ad4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

numpy/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,6 @@
148148
from . import linalg
149149
from . import fft
150150
from . import polynomial
151-
from . import random
152151
from . import ctypeslib
153152
from . import ma
154153
from . import matrixlib as _mat
@@ -228,7 +227,7 @@
228227
__all__.extend(core.__all__)
229228
__all__.extend(_mat.__all__)
230229
__all__.extend(lib.__all__)
231-
__all__.extend(['linalg', 'fft', 'random', 'ctypeslib', 'ma'])
230+
__all__.extend(['linalg', 'fft', 'ctypeslib', 'ma'])
232231

233232
# Remove one of the two occurrences of `issubdtype`, which is exposed as
234233
# both `numpy.core.issubdtype` and `numpy.lib.issubdtype`.

0 commit comments

Comments
 (0)