Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | BUG: Protect divide by 0 in multinomial (#20490) | Kevin Sheppard | 2021-12-02 | 1 | -0/+13 |
| | | | | | | | | | | Guard against empty pvals closes #20483 * MAINT: Correct exception type Raise TypeError for enhanced backward compat when pvals is scalar | ||||
* | index_tricks.py file not modified | shubham11941140 | 2021-08-19 | 1 | -2/+2 |
| | |||||
* | conversion of strings to fstrings | Jakob | 2020-10-24 | 1 | -2/+2 |
| | |||||
* | MAINT: simplify code that assumes str/unicode and int/long are different ↵ | Eric Wieser | 2020-03-26 | 1 | -8/+0 |
| | | | | | types (#15816) Cleanup from the dropping of python 2 | ||||
* | NEP: issue deprecation warning when creating ragged array (NEP 34) | Matti Picus | 2020-01-21 | 1 | -2/+3 |
| | | | | This implements NEP 34. | ||||
* | MAINT: Remove implicit inheritance from object class (#15236) | Jon Dufresne | 2020-01-05 | 1 | -2/+2 |
| | | | | | | | Inheriting from object was necessary for Python 2 compatibility to use new-style classes. In Python 3, this is unnecessary as there are no old-style classes. Dropping the object is more idiomatic Python. | ||||
* | Revert "DEP: issue deprecation warning when creating ragged array (NEP 34)"revert-14794-nep-0034-impl | Ralf Gommers | 2019-12-06 | 1 | -3/+2 |
| | |||||
* | MAINT: revert change to assert_array_equal, adjust tests | mattip | 2019-10-31 | 1 | -1/+2 |
| | |||||
* | DEP: issue deprecation warning when creating ragged array (NEP 34) | mattip | 2019-10-31 | 1 | -1/+1 |
| | |||||
* | API: make BitGenerators private | mattip | 2019-10-11 | 1 | -1/+1 |
| | |||||
* | BUG: random: Create a legacy implementation of random.binomial. | Warren Weckesser | 2019-09-16 | 1 | -1/+17 |
| | | | | | | | | | Create a legacy implementation of the random_binomial method of RandomState that does not include the "short-circuit" check for n == 0 or p == 0. This ensures that the stream of variates is consistent with the behavior in 1.16. Closes gh-14522. | ||||
* | BUG: Fix randint when range is 2**32 | Kevin Sheppard | 2019-09-14 | 1 | -0/+11 |
| | | | | | | Fix randint to use 32-bit path when range is exactly 2**32 closes #14189 | ||||
* | BUG: Ensure Windows choice returns int32 | Kevin Sheppard | 2019-06-02 | 1 | -0/+11 |
| | | | | | | Downcast from searchsorted on Windows to ensure int32 is returned closes #9867 | ||||
* | BUG: Fix RandomState argument name | Kevin Sheppard | 2019-05-29 | 1 | -0/+6 |
| | | | | | | RandomState's argument must be named seed for backward compat closes #13669 | ||||
* | BUG/MAINT: Disallow non-native byteorder in random ints | Kevin Sheppard | 2019-05-28 | 1 | -0/+9 |
| | | | | | | Warn that non-native byte order is not supported in randint and integers closes #13159 | ||||
* | BENCH: convert bencmarks to asv format | mattip | 2019-05-20 | 1 | -0/+157 |
remove files that were part of the origal repo rework randomgen docs to integrate with numpy and fix some links remove convenience functions, require explicit call to gen.brng move code out of numpy.random.randomgen into numpy.random |