From c63f8119afb65e30f837ab7198776854bb92b9b2 Mon Sep 17 00:00:00 2001 From: mattip Date: Wed, 20 Nov 2019 22:10:15 -0800 Subject: DOC, API: add numpy.random.__index__.pxd and document numpy.random.* funcs --- numpy/random/_examples/cython/extending_distributions.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'numpy/random/_examples/cython/extending_distributions.pyx') diff --git a/numpy/random/_examples/cython/extending_distributions.pyx b/numpy/random/_examples/cython/extending_distributions.pyx index 3f342c475..1bef506ef 100644 --- a/numpy/random/_examples/cython/extending_distributions.pyx +++ b/numpy/random/_examples/cython/extending_distributions.pyx @@ -8,8 +8,7 @@ cimport numpy as np cimport cython from cpython.pycapsule cimport PyCapsule_IsValid, PyCapsule_GetPointer from libc.stdint cimport uint16_t, uint64_t -from numpy.random._bit_generator cimport bitgen_t - +from numpy.random cimport bitgen_t from numpy.random import PCG64 @@ -72,3 +71,4 @@ def uint10_uniforms(Py_ssize_t n): randoms = np.asarray(random_values) return randoms + -- cgit v1.2.1