| Commit message (Expand) | Author | Age | Files | Lines |
| * | BUG: PR #227, Use npy_intp instead of long in mtrand. | cgohlke | 2012-05-01 | 5 | -2448/+2870 |
| * | BUG: fix random.test_noncentral_f issue under win64 + MSVC9. Closes #1801. | Ralf Gommers | 2011-04-22 | 1 | -2/+2 |
| * | CYT: Regenerate mtrand.c file. | Charles Harris | 2011-03-10 | 1 | -5900/+6516 |
| * | ENH: Add check for maximum average allowed in poisson rng. Original | Charles Harris | 2011-03-10 | 1 | -0/+9 |
| * | DOC: merge wiki changes for numpy.random and regenerate mtrand.c | rgommers | 2011-03-02 | 2 | -5879/+5572 |
| * | BUG: Ticket #1690, fix overflow error in randint. Slightly modified from the | Justin Peel | 2011-01-24 | 2 | -5511/+5909 |
| * | DOC: Merge wiki changes for RandomState as far as possible. Closes #1503. | rgommers | 2010-07-26 | 1 | -57/+69 |
| * | BUG: core: use PyCapsule objects only on Python >= 3.0, stay with PyCObjects ... | Pauli Virtanen | 2010-07-17 | 1 | -1/+1 |
| * | ENH: random: strip absolute paths from generated mtrand.c line number comment... | Pauli Virtanen | 2010-07-09 | 1 | -0/+2 |
| * | GEN: random: Regenerate mtrand.c | Pauli Virtanen | 2010-07-09 | 1 | -1068/+1079 |
| * | BUG: random: accept Python long as input to np.random.permutation (#1535) | Pauli Virtanen | 2010-07-09 | 1 | -1/+1 |
| * | BUG, STY: Make gaussian random number generators with identical behaviour | Charles Harris | 2010-05-26 | 2 | -14/+19 |
| * | STY: A Few more coding style cleanups. | Charles Harris | 2010-05-26 | 1 | -9/+20 |
| * | STY: Some c coding style cleanups. | Charles Harris | 2010-05-26 | 2 | -142/+165 |
| * | ENH, BUG: PyCObject will be deprecated in python 2.7. So use the NpyCapsule | Charles Harris | 2010-05-03 | 1 | -0/+3 |
| * | BUG: Replace deprecated PyCObject by PyCapsule for Python >= 3.1. | Charles Harris | 2010-02-23 | 2 | -1082/+1074 |
| * | 3K: ENH: regenerate mtrand.c with a newer Cython, for better Python 3 compati... | Pauli Virtanen | 2010-02-21 | 1 | -4686/+5426 |
| * | API and ABI changes: Removed BigArrayType, Fixed hasobject to an integer (an... | Travis Oliphant | 2010-02-15 | 1 | -1/+1 |
| * | random: regenrate mtrand.c | Pauli Virtanen | 2009-12-06 | 1 | -2550/+2630 |
| * | 3K: random: make mtrand to import | Pauli Virtanen | 2009-12-06 | 2 | -2/+27 |
| * | Hard tab removal. | Charles Harris | 2009-10-20 | 5 | -261/+258 |
| * | Regenerate mtrand.c | Pauli Virtanen | 2009-10-02 | 1 | -2096/+2096 |
| * | Docstring update: random | Pauli Virtanen | 2009-10-02 | 1 | -70/+903 |
| * | Docstring updates, part 1 | Pauli Virtanen | 2009-10-02 | 1 | -1/+87 |
| * | Regenerate mtrand.c | Pauli Virtanen | 2009-06-02 | 1 | -2/+2 |
| * | Fix errors in examples in docstrings | Pauli Virtanen | 2009-06-02 | 1 | -1/+1 |
| * | mtrand: regenerate mtrand.c | Pauli Virtanen | 2009-05-21 | 1 | -4546/+2456 |
| * | Docstring fixes: make some examples to work properly | Pauli Virtanen | 2009-05-20 | 1 | -5/+6 |
| * | Regenerate mtrand with cython-0.11 on David's urging. | Charles Harris | 2009-04-16 | 1 | -5944/+11991 |
| * | Rebuild mtrand.c with cython and change the script to use cython. | Charles Harris | 2009-04-16 | 2 | -5251/+11850 |
| * | Regenerate mtrand.c | Pauli Virtanen | 2009-03-27 | 1 | -1998/+2032 |
| * | Merge from the doc wiki | Pauli Virtanen | 2009-03-24 | 1 | -11/+70 |
| * | Fix tickets #921 and #923. Add regression tests. | Charles Harris | 2009-03-14 | 1 | -2/+2 |
| * | Applied Anand's patch fixing Ticket #986 regarding the domain of the Von Mise... | dhuard | 2009-03-09 | 1 | -3/+11 |
| * | Forgot to add time headers when mingw workaround is not used on windows. | David Cournapeau | 2008-11-17 | 1 | -0/+2 |
| * | Include time.h and sys/timeb.h just after defining our custom __MSVCRT_VERSIO... | David Cournapeau | 2008-11-17 | 1 | -2/+2 |
| * | Conditionally setup mingw workaround on __GNUC__ since we can't detect if we ... | David Cournapeau | 2008-11-17 | 1 | -1/+3 |
| * | Do not generate a config.h for randomkit: it does not work as it is, and addi... | David Cournapeau | 2008-11-17 | 1 | -2/+0 |
| * | Fix the inaccurate comment regarding _ftime issues with mingw. | David Cournapeau | 2008-11-17 | 1 | -2/+2 |
| * | Set __MSVCRT_VERSION__ to make _ftime64 visible from time.h header when we ne... | David Cournapeau | 2008-11-17 | 1 | -1/+4 |
| * | Use a wrapper around _ftime to work around a mingw bug in msvc runtimes impor... | David Cournapeau | 2008-11-17 | 1 | -1/+10 |
| * | Postpone time.h include because we will need to customize it on windows. | David Cournapeau | 2008-11-14 | 1 | -1/+2 |
| * | Generate config header for random kit (empty for now). | David Cournapeau | 2008-11-14 | 1 | -0/+1 |
| * | Regenerate mtrand.c due to docstring changes | Pauli Virtanen | 2008-10-28 | 1 | -3090/+2775 |
| * | Import documentation from doc wiki (part 2, work-in-progress docstrings, but ... | Pauli Virtanen | 2008-10-28 | 1 | -17/+431 |
| * | Import documentation from doc wiki (part 1) | Pauli Virtanen | 2008-10-27 | 1 | -4/+4 |
| * | BUG: Logarithmic series needs to exclude p==0 and p==1. When the conversion o... | Robert Kern | 2008-08-24 | 3 | -25/+43 |
| * | BUG: Allow floating point argument n to negative binomial distribution. | Robert Kern | 2008-08-23 | 4 | -3213/+3806 |
| * | BUG: F distributions need the appropriate scale factor. | Robert Kern | 2008-08-12 | 1 | -1/+2 |
| * | Fix bad string escaping in mtrand.pyx docstrings (+ regenerate mtrand.c) | Pauli Virtanen | 2008-08-07 | 2 | -761/+727 |