summaryrefslogtreecommitdiff
path: root/numpy/random/_pcg64.pyx
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2019-10-02 22:26:55 +0300
committermattip <matti.picus@gmail.com>2019-10-11 15:08:46 +0300
commit260bf67640724915ffefd0a5a7133318ece149da (patch)
treed4e6e2fbcf7db4d3de21a0d3324c5f596d520ef9 /numpy/random/_pcg64.pyx
parentaeac7d56e91577d54ee48a6ae928709414f176e5 (diff)
downloadnumpy-260bf67640724915ffefd0a5a7133318ece149da.tar.gz
API: move bit_generator and generator to be private
Diffstat (limited to 'numpy/random/_pcg64.pyx')
-rw-r--r--numpy/random/_pcg64.pyx2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/_pcg64.pyx b/numpy/random/_pcg64.pyx
index 2886b0c82..2d5ade9f8 100644
--- a/numpy/random/_pcg64.pyx
+++ b/numpy/random/_pcg64.pyx
@@ -3,7 +3,7 @@ cimport numpy as np
from libc.stdint cimport uint32_t, uint64_t
from ._common cimport uint64_to_double, wrap_int
-from .bit_generator cimport BitGenerator
+from ._bit_generator cimport BitGenerator
__all__ = ['PCG64']