| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
ENH: Add typing for RandomState
|
| | | | |
| | | | |
| | | | |
| | | | | |
Remove incorrect variable name in randint
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Clean unnecessary definitions
Fix small typing errors
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Bring over changes from Generator to RandomState where appropriate
Remove attributes not in RandomState
|
| | | | |
| | | | |
| | | | |
| | | | | |
Add further tests for functions that accept out and dtype arguments
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Add tests
Fix related bugs
Improve specificity of definitions
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Add tests for lower level components
Correct errors found in testing
Improve specificity of tests
Other small fixes to docs and typing
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Add typing for RandomState
Small fixes to Generator's typing
|
|\ \ \ \ \
| | | | | |
| | | | | | |
BUG: Remove suspicious type casting
|
| | | | | | |
|
| | |/ / /
| |/| | | |
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
DOC: Generator and RandomState doc improvements
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Add explanation for different results when using user-specified probabilities
even if uniform
closes #18172
|
|/ / / /
| | | |
| | | |
| | | | |
closes #18314
|
|\ \ \ \
| | | | |
| | | | | |
BUG: verify pointer against NULL before using it
|
| |/ / / |
|
|\ \ \ \
| |/ / /
|/| | | |
BUG: remove nonsensical comparison of pointer < 0
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
DOC: improve standard_t example in numpy.random.
|
| |\ \ \ |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Clarify point about std computation
Use absolute value for p-value computation of 2-tailed test
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This rewrite better reflects the cited reference R example
by offering a 2-tailed test and more accurate language.
Closes #18370.
|
|\ \ \ \ \
| |_|_|/ /
|/| | | | |
DOC: update NEP status for accepted/finished NEPs
|
| | | | |
| | | | |
| | | | |
| | | | | |
[ci skip]
|
|\ \ \ \ \
| | | | | |
| | | | | | |
API: make piecewise subclass safe using use zeros_like.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Subclass input of piecewise was already respected, so it seems more
logical to ensure the output is the same subclass (possibly just an
oversight that it was not done before).
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
BUG: Segfault in nditer buffer dealloc for Object arrays
|
| | |_|_|_|/
| |/| | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
MAINT: Bump hypothesis from 6.2.0 to 6.3.0
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Bumps [hypothesis](https://github.com/HypothesisWorks/hypothesis) from 6.2.0 to 6.3.0.
- [Release notes](https://github.com/HypothesisWorks/hypothesis/releases)
- [Commits](https://github.com/HypothesisWorks/hypothesis/compare/hypothesis-python-6.2.0...hypothesis-python-6.3.0)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
|
|\ \ \ \ \ \ \
| |_|_|/ / / /
|/| | | | | | |
MAINT: Bump cython from 0.29.21 to 0.29.22
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Bumps [cython](https://github.com/cython/cython) from 0.29.21 to 0.29.22.
- [Release notes](https://github.com/cython/cython/releases)
- [Changelog](https://github.com/cython/cython/blob/master/CHANGES.rst)
- [Commits](https://github.com/cython/cython/compare/0.29.21...0.29.22)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
BUG: Fix iterator shape in advanced index assignment broadcast error
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The reported shape always missed the transpose operation, this refactors
the transpose getting out and applies it in the error path.
Closes gh-18401, gh-5710
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
BUG: fix stacklevel in warning within random.shuffle
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
The test checks that the warning originates in the correct file
(test_random.py). I am not quite sure how safe the test is, though.
Unfortunately, there is no "obvious" way to test stacklevels.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Cython does _not_ add a new stacklevel (at least at this time),
so `stacklevel=1` (or ommiting it) is, maybe surprisingly, correct.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
MAINT: Bump sphinx from 3.5.0 to 3.5.1
|
| | |_|/ / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Bumps [sphinx](https://github.com/sphinx-doc/sphinx) from 3.5.0 to 3.5.1.
- [Release notes](https://github.com/sphinx-doc/sphinx/releases)
- [Changelog](https://github.com/sphinx-doc/sphinx/blob/3.x/CHANGES)
- [Commits](https://github.com/sphinx-doc/sphinx/compare/v3.5.0...v3.5.1)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
MAINT: Bump mypy from 0.800 to 0.812
|
|/ / / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Bumps [mypy](https://github.com/python/mypy) from 0.800 to 0.812.
- [Release notes](https://github.com/python/mypy/releases)
- [Commits](https://github.com/python/mypy/compare/v0.800...v0.812)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
|