diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore index c2eddb84a..2ad02b560 100644 --- a/.gitignore +++ b/.gitignore @@ -142,7 +142,9 @@ numpy/core/src/npysort/binsearch.c numpy/core/src/npysort/heapsort.c numpy/core/src/npysort/mergesort.c numpy/core/src/npysort/quicksort.c +numpy/core/src/npysort/radixsort.c numpy/core/src/npysort/selection.c +numpy/core/src/npysort/timsort.c numpy/core/src/npysort/sort.c numpy/core/src/private/npy_binsearch.h numpy/core/src/private/npy_partition.h @@ -153,6 +155,7 @@ numpy/core/src/umath/_struct_ufunc_tests.c numpy/core/src/umath/_umath_tests.c numpy/core/src/umath/scalarmath.c numpy/core/src/umath/funcs.inc +numpy/core/src/umath/clip.[ch] numpy/core/src/umath/loops.[ch] numpy/core/src/umath/matmul.[ch] numpy/core/src/umath/operand_flag_tests.c @@ -162,12 +165,16 @@ numpy/core/src/umath/test_rational.c numpy/core/src/umath/umath_tests.c numpy/distutils/__config__.py numpy/linalg/umath_linalg.c -doc/source/reference/generated +doc/source/**/generated/ benchmarks/results benchmarks/html benchmarks/env benchmarks/numpy # cythonized files cythonize.dat -numpy/random/mtrand/mtrand.c -numpy/random/mtrand/randint_helpers.pxi +numpy/random/_mtrand/_mtrand.c +numpy/random/*.c +numpy/random/legacy/*.c +numpy/random/_mtrand/randint_helpers.pxi +numpy/random/bounded_integers.pyx +numpy/random/bounded_integers.pxd |