| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
* Minor improvements in Array API docs
* Directory restruture
|
|\
| |
| | |
BUILD: adapt "make version-check" to "make dist"
|
| | |
|
|\ \
| | |
| | | |
DOC: Improve quickstart documentation of new random Generator
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
Prettify see also directive
|
| | |
| | |
| | |
| | | |
Fix linking error
|
| | |
| | |
| | |
| | | |
Fixed linking error
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| | |
Made references to each other for the following two indexing docs
https://docs.scipy.org/doc/numpy-1.15.0/user/basics.indexing.html
https://docs.scipy.org/doc/numpy-1.13.0/reference/arrays.indexing.html
closes #12195
|
|\ \
| | |
| | | |
[DOC] Remove unused/deprecated functions
|
| | | |
|
|\ \ \
| | | |
| | | | |
DOC: show workaround for backward compatibility
|
| | |/
| |/| |
|
|\ \ \
| | | |
| | | | |
DOC: emphasize need for matching numpy, git versions
|
| |/ / |
|
|\ \ \
| |_|/
|/| | |
DOC: Document array_function at a higher level.
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| |_|/
|/| | |
MAINT: Update NEP template.
|
| | |
| | |
| | |
| | |
| | | |
Removes a duplicate sentence and overlap between the "Motivation and Scope"
and "Detailed implementation" sections.
|
| | | |
|
| | | |
|
|\ \ \
| |_|/
|/| | |
DOC, MAINT: emphasize random API changes, remove Generator.randint
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Quickstart guide recommends np.set_printoptions(threshold=np.nan) but that fails.
So changed that to np.set_printoptions(threshold=sys.maxsize)
Closes #13900
* DOC:Update the docstring of set_printoptions
Add preferred max value for threshold is sys.maxsize
* Revert "DOC:Update the docstring of set_printoptions"
This reverts commit 9641121fcb84b9ad5edb188a4a5b4ac9361fbf0b.
* DOC:Update the docstring of set_printoptions
Add preferred max value for threshold is sys.maxsize
* DOC:Update the docstring of set_printoptions
Better pharasing in docstring.
* DOC:Update the description of set_printoptions in quickstart doc #13900
Fix indentation
|
|/ /
| |
| | |
Zero isn't positive, so the correct term should be "non-negative".
|
|\ \
| | |
| | | |
DOC: Adds documentation of functions exposed in numpy namespace
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
In some cases the documentation examples failed with an
AttributeError because the next method was not there. In a
few other cases it still worked but may be more future-proof
and ideomatic if they used the next function instead of the
next method.
|
|\ \ \
| |_|/
|/| | |
DOC : Refactor Array API documentation -- Array Structure and Data Access
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
DOC: Fix unrendered links
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* DOC: Adds missing macros in C-API documentation
* Adds new PyUFunc_{KIND} macros
Fixes #13775
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
- Create release notes.
- Update pavement.py.
- Update setup.py
|
| |/ /
|/| |
| | |
| | |
| | |
| | |
| | |
| | | |
- Update mailmap.
- Edit release notes.
- Create changelog.
[ci skip]
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
When the base is not an array (or generally when the flag of the base
array was toggled), it is OK to allow setting the writeable flag to
True, as long as any ancestor (especially the last one) is writeable.
This commit also slightly change the behaviour of the base attribute.
---
* ENH: Deprecate writeable broadcast_array
* ENH: Make writeable flag enabling more reliable for non-array bases
When the base is not an array (or generally when the flag of the base
array was toggled), it is OK to allow setting the writeable flag to
True, as long as any ancestor (especially the last one) is writeable.
* Update doc/release/1.17.0-notes.rst
Co-Authored-By: Sebastian Berg <sebastian@sipsolutions.net>
* Update doc/release/1.17.0-notes.rst
Co-Authored-By: Sebastian Berg <sebastian@sipsolutions.net>
* Update numpy/lib/tests/test_stride_tricks.py
Co-Authored-By: Sebastian Berg <sebastian@sipsolutions.net>
* Update numpy/core/tests/test_multiarray.py
Co-Authored-By: Sebastian Berg <sebastian@sipsolutions.net>
* DOC: improve warning (from review)
|
|\ \ \
| | | |
| | | | |
DOC: Update performance numbers for PCG64
|
| | | |
| | | |
| | | |
| | | | |
Update PCG performance numbers using the code in #13858
|
|/ / /
| | |
| | | |
* ENH: Rename seed_seq argument to seed and replace Generator() with default_gen()
|
|\ \ \
| | | |
| | | | |
DOC: np.random documentation cleanup and expansion.
|
| | | | |
|
| | | | |
|