diff options
author | mattip <matti.picus@gmail.com> | 2019-09-27 15:10:40 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-10-11 15:08:46 +0300 |
commit | e527e71f11e79e03eee41441d383b046ddb68d8b (patch) | |
tree | e01be48bcd9d363f4661214711bc80d2b3362ed9 /numpy/random/common.pyx | |
parent | 007b3236a1409648629660cd6a25adeaba40cf75 (diff) | |
download | numpy-e527e71f11e79e03eee41441d383b046ddb68d8b.tar.gz |
API: rearrange the cython files in numpy.random
Diffstat (limited to 'numpy/random/common.pyx')
-rw-r--r-- | numpy/random/common.pyx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/common.pyx b/numpy/random/common.pyx index 74cd5f033..5bb869524 100644 --- a/numpy/random/common.pyx +++ b/numpy/random/common.pyx @@ -6,7 +6,7 @@ import sys import numpy as np cimport numpy as np -from .common cimport * +from libc.stdint cimport uintptr_t __all__ = ['interface'] |