| Commit message (Expand) | Author | Age | Files | Lines |
* | MAINT: Remove implicit inheritance from object class (#15236) | Jon Dufresne | 2020-01-05 | 8 | -37/+37 |
* | MAINT: Remove unnecessary 'from __future__ import ...' statements | Jon Dufresne | 2020-01-03 | 4 | -7/+0 |
* | MAINT: remove dead code from review | mattip | 2019-12-27 | 1 | -1/+0 |
* | MAINT: unskip test on win32 | mattip | 2019-12-27 | 2 | -3/+2 |
* | BUG: use tmp dir and check version for cython test (#15170) | Matti Picus | 2019-12-26 | 2 | -17/+28 |
* | DOC: Remove extraneous quote | Kevin Sheppard | 2019-12-23 | 1 | -1/+1 |
* | DOC: Correct documentation in choice | Kevin Sheppard | 2019-12-23 | 1 | -13/+16 |
* | DOC: Correct choice signature | Kevin Sheppard | 2019-12-20 | 1 | -1/+1 |
* | Fix typos, via a Levenshtein-style corrector | Brian Wignall | 2019-12-19 | 1 | -1/+1 |
* | MAINT: Fix randint 0d limits and other 0d cleanups (#15126) | Nico Schlömer | 2019-12-18 | 1 | -2/+1 |
* | MAINT: random: Remove a few unused imports from test files. | Warren Weckesser | 2019-12-15 | 3 | -3/+0 |
* | Revert "DEP: issue deprecation warning when creating ragged array (NEP 34)"revert-14794-nep-0034-impl | Ralf Gommers | 2019-12-06 | 3 | -10/+7 |
* | API, DOC: change names to multivariate_hypergeometric, improve docs | mattip | 2019-12-04 | 3 | -12/+12 |
* | Merge pull request #15007 from mattip/random-c-api2 | Ralf Gommers | 2019-12-03 | 4 | -89/+94 |
|\ |
|
| * | API: revert changes to standard_t, cauchy | mattip | 2019-11-30 | 2 | -6/+6 |
| * | API: rename functions in distributions.c,h | mattip | 2019-11-29 | 2 | -60/+51 |
| * | DOC, TST: refactor CFFI test, add file names to documentation | mattip | 2019-11-29 | 2 | -35/+49 |
* | | Merge pull request #14794 from mattip/nep-0034-impl | Ralf Gommers | 2019-12-02 | 3 | -7/+10 |
|\ \
| |/
|/| |
|
| * | MAINT: revert change to assert_array_equal, adjust tests | mattip | 2019-10-31 | 3 | -3/+6 |
| * | DEP: issue deprecation warning when creating ragged array (NEP 34) | mattip | 2019-10-31 | 3 | -4/+4 |
* | | Merge pull request #14954 from mattip/test-extending-cffi | Charles Harris | 2019-11-27 | 4 | -5/+97 |
|\ \ |
|
| * | | TST: skip cffi tests when PYTHONOPTIMIZE>1, pycparser fails | mattip | 2019-11-21 | 2 | -0/+12 |
| * | | API, MAINT: export symbols on MSVC, fix typos | mattip | 2019-11-21 | 1 | -3/+3 |
| * | | TST. API: test using distributions.h via cffi | mattip | 2019-11-21 | 2 | -2/+82 |
* | | | Merge pull request #14948 from mattip/document-random | Charles Harris | 2019-11-27 | 12 | -25/+315 |
|\ \ \ |
|
| * | | | DOC: update note from review | mattip | 2019-11-21 | 1 | -84/+84 |
| * | | | MAINT: "See also" -> "See Also" | mattip | 2019-11-21 | 1 | -23/+23 |
| * | | | DOC, API: add numpy.random.__index__.pxd and document numpy.random.* funcs | mattip | 2019-11-21 | 12 | -25/+315 |
* | | | | TST: skip if cython is not available | mattip | 2019-11-22 | 1 | -0/+6 |
|/ / / |
|
* | | | DOC: Clean up examples of low-level random access | Kevin Sheppard | 2019-11-21 | 4 | -21/+37 |
|/ / |
|
* | | DOC, MAINT: fix documentation, remove __init__.py | mattip | 2019-11-20 | 1 | -0/+0 |
* | | MAINT: move numpy/random/examples -> numpy/random/_examples | mattip | 2019-11-19 | 8 | -4/+4 |
* | | DOC: Clarify return type for default rng | Kevin Sheppard | 2019-11-19 | 1 | -3/+7 |
* | | API: restructure and document numpy.random C-API (#14604) | Matti Picus | 2019-11-19 | 18 | -298/+127 |
* | | Merge pull request #14878 from mattip/remove-sse2 | Warren Weckesser | 2019-11-14 | 1 | -5/+0 |
|\ \ |
|
| * | | BUILD: remove SSE2 flag from numpy.random builds | mattip | 2019-11-11 | 1 | -5/+0 |
* | | | MAINT: Remove uses of scalar aliases | Eric Wieser | 2019-11-13 | 7 | -32/+31 |
* | | | MAINT: Delete and ignore generated files | Eric Wieser | 2019-11-13 | 3 | -1593/+3 |
|/ / |
|
* | | merge latest changes on master branch | RedRuM | 2019-11-03 | 41 | -997/+3010 |
|\ \
| |/ |
|
| * | DOC: random: Remove redundant 'See Also' entry in 'uniform' docstring. | Warren Weckesser | 2019-10-28 | 1 | -1/+0 |
| * | BUG: random: biased samples from integers() with 8 or 16 bit dtype. | Warren Weckesser | 2019-10-24 | 2 | -16/+25 |
| * | ENH: random: Add the multivariate hypergeometric distribution | Warren Weckesser | 2019-10-18 | 6 | -3/+668 |
| * | DOC: fix from review | mattip | 2019-10-17 | 1 | -1/+1 |
| * | TEST, DOC: fixes from review | mattip | 2019-10-17 | 1 | -1/+1 |
| * | DOC: typos from review | mattip | 2019-10-15 | 1 | -1/+1 |
| * | DOC: clean up for moved references, remove ISeedSequence | mattip | 2019-10-13 | 8 | -33/+27 |
| * | API: move bit_generator and generator to be private | mattip | 2019-10-11 | 16 | -26/+17 |
| * | API: remove unused functions from distributions.h | mattip | 2019-10-11 | 3 | -39/+36 |
| * | API: refactor function names in distribution.{h,c}, refactor float_fill | mattip | 2019-10-11 | 7 | -262/+117 |
| * | API: make BitGenerators private | mattip | 2019-10-11 | 11 | -25/+25 |