summaryrefslogtreecommitdiff
path: root/numpy/random/_bounded_integers.pxd.in
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2019-11-20 22:10:15 -0800
committermattip <matti.picus@gmail.com>2019-11-21 16:47:30 -0800
commitc63f8119afb65e30f837ab7198776854bb92b9b2 (patch)
tree43edc285581e86f232bd0b7143dda942f2635cfc /numpy/random/_bounded_integers.pxd.in
parent5923592155fa9301dfbdcc2b2b92972ea796dcc4 (diff)
downloadnumpy-c63f8119afb65e30f837ab7198776854bb92b9b2.tar.gz
DOC, API: add numpy.random.__index__.pxd and document numpy.random.* funcs
Diffstat (limited to 'numpy/random/_bounded_integers.pxd.in')
-rw-r--r--numpy/random/_bounded_integers.pxd.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/_bounded_integers.pxd.in b/numpy/random/_bounded_integers.pxd.in
index 320d35774..5ae5a8067 100644
--- a/numpy/random/_bounded_integers.pxd.in
+++ b/numpy/random/_bounded_integers.pxd.in
@@ -4,7 +4,7 @@ import numpy as np
cimport numpy as np
ctypedef np.npy_bool bool_t
-from ._bit_generator cimport bitgen_t
+from numpy.random cimport bitgen_t
cdef inline uint64_t _gen_mask(uint64_t max_val) nogil:
"""Mask generator for use in bounded random numbers"""