diff options
author | mattip <matti.picus@gmail.com> | 2019-10-02 22:26:55 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-10-11 15:08:46 +0300 |
commit | 260bf67640724915ffefd0a5a7133318ece149da (patch) | |
tree | d4e6e2fbcf7db4d3de21a0d3324c5f596d520ef9 /numpy/random/_pcg64.pyx | |
parent | aeac7d56e91577d54ee48a6ae928709414f176e5 (diff) | |
download | numpy-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.pyx | 2 |
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'] |