diff options
author | mattip <matti.picus@gmail.com> | 2019-09-29 00:43:30 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-10-11 15:08:46 +0300 |
commit | 6fd7ec969feb980aebd33a8df7bccd873ade74bb (patch) | |
tree | c5f1fd45262ce98b98d8fe01a57c6728147e4d20 /numpy/random/tests | |
parent | e527e71f11e79e03eee41441d383b046ddb68d8b (diff) | |
download | numpy-6fd7ec969feb980aebd33a8df7bccd873ade74bb.tar.gz |
API: rename common, bounded_integers -> _common, _bounded_integers; cleanup
Diffstat (limited to 'numpy/random/tests')
-rw-r--r-- | numpy/random/tests/test_direct.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/tests/test_direct.py b/numpy/random/tests/test_direct.py index 0f57c4bd4..ca29c3544 100644 --- a/numpy/random/tests/test_direct.py +++ b/numpy/random/tests/test_direct.py @@ -10,7 +10,7 @@ from numpy.random import ( Generator, MT19937, PCG64, Philox, RandomState, SeedSequence, SFC64, default_rng ) -from numpy.random.common import interface +from numpy.random._common import interface try: import cffi # noqa: F401 |