Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | MAINT, DOC: discard repeated words | Dimitri Papadopoulos | 2022-01-13 | 1 | -1/+1 |
| | |||||
* | MAINT: Remove encoding declarations: # -*- coding: utf-8 -*- | Dimitri Papadopoulos | 2021-10-06 | 1 | -1/+0 |
| | | | | In Python 3, the default source file encoding is UTF-8. | ||||
* | DOC: rm see also ref to doc.indexing. | Ross Barnowski | 2020-09-09 | 1 | -4/+0 |
| | | | | Indexing article no longer exists | ||||
* | Fix docstring cross-referencing | Albert Villanova del Moral | 2020-09-04 | 1 | -1/+1 |
| | |||||
* | MAINT, DOC: move informational files from numpy.doc.*.py to their *.rst ↵ | Matti Picus | 2020-09-02 | 11 | -3807/+0 |
| | | | | | | | | | counterparts (#17222) * DOC: redistribute docstring-only content from numpy/doc * DOC: post-transition clean-up * DOC, MAINT: reskip doctests, fix a few easy ones | ||||
* | DOC: Correct error in description of ndarray.base | Ryan Soklaski | 2020-08-28 | 1 | -2/+2 |
| | | | Found in subsection of Subclassing ndarray in python: Extra gotchas - custom __del__ methods and ndarray.base | ||||
* | DOC: Tweak a sentence about broadcasting. | Warren Weckesser | 2020-07-02 | 1 | -2/+2 |
| | | | | | | * Make clear that "trailing" means the "rightmost" dimensions. * Instead of saying "works its way forward" (forward?), say "works its way left". | ||||
* | DOC: Use intersphinx for NEP references | Ben Nathanson | 2020-06-04 | 1 | -1/+1 |
| | | | | | | | | | | | | | Per #16500 discussion, adds link updates to PR. Replaces NEP URLs with intersphinx links in these files: * doc/HOWTO_RELEASE.rst.txt * doc/source/dev/howto-docs.rst * numpy/doc/dispatch.py * numpy/lib/format.py and incorporates @rossbar's #16502 change of `config.py`. | ||||
* | DOC: Fix spelling typo - homogenous to homogeneous. (#16324) | Kevin Moore | 2020-05-21 | 1 | -1/+1 |
| | |||||
* | MAINT: Unify casting error creation (outside the iterator) | Sebastian Berg | 2020-05-02 | 1 | -1/+1 |
| | |||||
* | DOC: Add missing bracket (gh-16051) | Chunlin | 2020-04-25 | 2 | -2/+2 |
| | | | Add missing closing brackets, script to generate the list in the PR gh-16051. | ||||
* | DOC: Clarify docs on mixed advanced indexing and slicing (gh-15891) | Paul Rougieux | 2020-04-20 | 1 | -4/+13 |
| | | | | | | It was not clear how to reproduce the slice example with multi dimensional array indexing. I hope the additional example clarifies the equivalence between slice and multi array for new users. Co-Authored-By: Eric Wieser <wieser.eric@gmail.com> Co-Authored-By: Anirudh Subramanian <anirudh2290@apache.org> | ||||
* | MAINT: simplify code that assumes str/unicode and int/long are different ↵ | Eric Wieser | 2020-03-26 | 1 | -2/+1 |
| | | | | | types (#15816) Cleanup from the dropping of python 2 | ||||
* | STY,MAINT: avoid 'multiple imports on one line' (flake8 E401) | Mike Taves | 2020-01-28 | 1 | -1/+2 |
| | | | | | | * PEP 8: "Imports should usually be on separate lines" * Where modified, sort imported modules alphabetically * Clean-up unused imports from these expanded lines | ||||
* | MAINT: Implement keyword-only arguments as syntax | Eric Wieser | 2020-01-06 | 1 | -2/+2 |
| | | | | Now that 2.7 is gone, there is no need to pop manually from kwarg dictionaries. | ||||
* | MAINT: Remove implicit inheritance from object class (#15236) | Jon Dufresne | 2020-01-05 | 2 | -3/+3 |
| | | | | | | | 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. | ||||
* | MAINT: Remove unnecessary 'from __future__ import ...' statements | Jon Dufresne | 2020-01-03 | 13 | -15/+0 |
| | | | | | As numpy is Python 3 only, these import statements are now unnecessary and don't alter runtime behavior. | ||||
* | Fix typos, via a Levenshtein-style corrector | Brian Wignall | 2019-12-19 | 1 | -1/+1 |
| | |||||
* | MAINT: Remove uses of scalar aliases | Eric Wieser | 2019-11-13 | 1 | -2/+2 |
| | | | | Relates to gh-6103 | ||||
* | DOC: add comment to explain `object.__new__`. | Ralf Gommers | 2019-08-28 | 1 | -0/+1 |
| | | | | [ci skip] | ||||
* | DOC: fix issue with __new__ usage in subclassing doc. | Ralf Gommers | 2019-08-28 | 1 | -1/+1 |
| | | | | Closes gh-14386. | ||||
* | DOC: Clarify rules about broadcasting when empty arrays are involved. (#14313) | Maxwell Aladago | 2019-08-26 | 1 | -2/+1 |
| | | | * DOC: clarified rules about broadcasting when empty arrays are involved. | ||||
* | DOC: Fix a minor typo in dispatch documentation. | Dan Allan | 2019-08-24 | 1 | -1/+1 |
| | |||||
* | DOC: Address typos in dispatch docs | Matt McCormick | 2019-08-14 | 1 | -3/+3 |
| | |||||
* | Merge pull request #13979 from danielballan/array-function-high-level-docs | Charles Harris | 2019-07-14 | 1 | -0/+271 |
|\ | | | | | DOC: Document array_function at a higher level. | ||||
| * | Improve illustartion of unsupported args. | Dan Allan | 2019-07-14 | 1 | -6/+10 |
| | | |||||
| * | Copy editing | Dan Allan | 2019-07-14 | 1 | -3/+2 |
| | | |||||
| * | Add new section of custom array containers. | Dan Allan | 2019-07-13 | 1 | -0/+268 |
| | | |||||
* | | Spellcheck @numpy/doc/broadcasting.py | Bastian Eichenberger | 2019-07-13 | 1 | -2/+2 |
|/ | |||||
* | Re-add double backlash | Johann Faouzi | 2019-07-09 | 1 | -1/+1 |
| | |||||
* | Update basics.py | Johann Faouzi | 2019-07-09 | 1 | -2/+2 |
| | |||||
* | DOC: Fix wrong spelling of ufunc | MSeifert04 | 2019-07-06 | 1 | -2/+2 |
| | |||||
* | BUG: ensure that casting to/from structured is properly checked. | Marten van Kerkwijk | 2019-06-12 | 1 | -5/+2 |
| | | | | | | | | | | Allow unsafe casting from a simple data type to a structured one with multiple fields, but only from structured data type with a single field (checked recursively) to a simple data type. For now, continue to allow any structured to structured with casting="unsafe", as the current can_cast implementation does not match that of "astype". | ||||
* | DOC: Reorder the constants to have the most useful first | Eric Wieser | 2019-06-01 | 1 | -153/+154 |
| | | | | | | | Previously the constants at the top of the page said words to the effect of "use the one at the bottom of this page instead". Let's just show users those ones first to start with. This commit only re-orders these constants, it does not change any of the descriptions, despite the diff appearing to show that | ||||
* | MAINT: Misc. typo fixes (#13664) | luzpaz | 2019-05-31 | 2 | -3/+4 |
| | | | | | | * DOC, MAINT: Misc. typo fixes Found via `codespell` | ||||
* | DOC: Update boolean indices in index arrays with slices example | Ori Broda | 2019-05-25 | 1 | -0/+7 |
| | |||||
* | DOC : Correcting bug on Documentation Page (Byteswapping) (#13262) | vrindaaa | 2019-04-06 | 1 | -10/+10 |
| | | | | | | * Correcting bug on Documentation Page : Byteswapping * Changing name of variable | ||||
* | Merge pull request #13147 from Kai-Striega/DOC_int_overflow | Matti Picus | 2019-03-19 | 1 | -0/+39 |
|\ | | | | | DOC: Add description of overflow errors | ||||
| * | DOC: Minor fix in Integer Overflow doc | Kai Striega | 2019-03-19 | 1 | -3/+3 |
| | | | | | | | | Change `np.power` -> `numpy.power` to make it reference the function's documentation | ||||
| * | DOC: Remove extra letter from docs | Kai Striega | 2019-03-19 | 1 | -1/+1 |
| | | |||||
| * | DOC: Add description of overflow errorrs | kai | 2019-03-18 | 1 | -0/+39 |
| | | | | | | | | | | | | | | Unlike Python, NumPy integers have fixed sizes. This can lead to confusion when a integer overflow occurs and users expect NumPy integer types to behave similarily to Python integers. This commit explains integer overflow, an example and potential work arounds. | ||||
* | | DOC: add copy on slicing notice | wtli | 2019-03-14 | 1 | -1/+3 |
|/ | |||||
* | DOC: fixes from review | mattip | 2019-02-28 | 1 | -6/+8 |
| | |||||
* | DOC: fixes from review | mattip | 2019-02-28 | 2 | -32/+40 |
| | |||||
* | DOC: reduce warnings when building, reword, tweak doc building | mattip | 2019-02-28 | 2 | -8/+27 |
| | |||||
* | DOC: doctest structured array introduction | mattip | 2019-01-14 | 1 | -48/+58 |
| | |||||
* | DOC: more doc updates for structured arrays | Allan Haldane | 2018-12-15 | 1 | -0/+9 |
| | | | | [ci skip] | ||||
* | TST, DOC: enable refguide_check | Tyler Reddy | 2018-12-14 | 1 | -2/+0 |
| | | | | | | | | * ported the refguide_check module from SciPy for usage in NumPy docstring execution/ verification; added the refguide_check run to Azure Mac OS CI * adjusted NumPy docstrings such that refguide_check passes | ||||
* | ENH: add back the multifield copy->view change | Allan Haldane | 2018-11-26 | 1 | -46/+62 |
| | | | | | Fixes #10409 Closes #11530 | ||||
* | Merge pull request #11526 from ahaldane/add_struct_helper_funcs_redo | Charles Harris | 2018-11-23 | 1 | -0/+9 |
|\ | | | | | ENH: add multi-field assignment helpers in np.lib.recfunctions |