summaryrefslogtreecommitdiff
path: root/numpy/doc/glossary.py
Commit message (Collapse)AuthorAgeFilesLines
* MAINT: Remove implicit inheritance from object class (#15236)Jon Dufresne2020-01-051-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.
* MAINT: Remove unnecessary 'from __future__ import ...' statementsJon Dufresne2020-01-031-1/+0
| | | | | As numpy is Python 3 only, these import statements are now unnecessary and don't alter runtime behavior.
* DOC: fixes from reviewmattip2019-02-281-6/+8
|
* DOC: fixes from reviewmattip2019-02-281-27/+35
|
* DOC: reduce warnings when building, reword, tweak doc buildingmattip2019-02-281-1/+19
|
* TST, DOC: enable refguide_checkTyler Reddy2018-12-141-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
* HTTP -> HTTPS, and other linkrot fixesMike Toews2018-06-161-3/+3
|
* document a few more missing glossary termsmattip2018-04-131-0/+8
|
* fix typos from reviewmattip2018-04-111-2/+2
|
* add missing glossary entries and link in missing documentmattip2018-04-111-2/+20
|
* ENH: don't show boolean dtype, as it is impliedEric Wieser2017-11-131-1/+1
|
* DOC: fix operation plural in along axis glossarySteven Maude2017-10-311-1/+1
| | | Correct "Many operation can..." to "Many operations can..."
* DOC: BLD: fix lots of Sphinx warnings/errors.Ralf Gommers2017-06-101-8/+9
|
* DOC: change Numpy to NumPy in dosctrings and commentsPierre de Buyl2016-09-061-1/+1
| | | | The strings in error messages were left untouched
* DOC: Fix more typos in docs and comments.Dongjoon Hyun2016-02-251-1/+1
|
* DOC: Use print only as function when print_function is imported from __future__gfyoung2015-12-191-3/+3
| | | | Closes gh-6863.
* DOC: Fix docstring warnings in documetation generation.Charles Harris2015-07-011-5/+2
| | | | | | | | | | | | Most of these fixes involve putting blank lines around .. versionadded:: x.x.x and .. deprecated:: x.x.x Some of the examples were also fixed.
* DOC: improve record/structured array nomenclature & guideAllan Haldane2015-01-221-2/+10
| | | | | | | | | | | This update adds a section better describing record arrays in the user guide (numpy/doc/structured_arrays.py). It also corrects nomenclature, such that "structured array" refers to ndarrays with structured dtype, "record array" refers to modified ndarrays as created by np.rec.array, and "recarray" refers to ndarrays viewed as np.recarray. See the note at the end of the structured array user guide.
* STY: Giant whitespace cleanup.Charles Harris2013-08-181-1/+0
| | | | Now is as good a time as any with open PR's at a low.
* 2to3: Apply `print` fixer.Charles Harris2013-04-061-1/+1
| | | | | | | Add `print_function` to all `from __future__ import ...` statements and use the python3 print function syntax everywhere. Closes #3078.
* 2to3: Use absolute imports.Charles Harris2013-03-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The new import `absolute_import` is added the `from __future__ import` statement and The 2to3 `import` fixer is run to make the imports compatible. There are several things that need to be dealt with to make this work. 1) Files meant to be run as scripts run in a different environment than files imported as part of a package, and so changes to those files need to be skipped. The affected script files are: * all setup.py files * numpy/core/code_generators/generate_umath.py * numpy/core/code_generators/generate_numpy_api.py * numpy/core/code_generators/generate_ufunc_api.py 2) Some imported modules are not available as they are created during the build process and consequently 2to3 is unable to handle them correctly. Files that import those modules need a bit of extra work. The affected files are: * core/__init__.py, * core/numeric.py, * core/_internal.py, * core/arrayprint.py, * core/fromnumeric.py, * numpy/__init__.py, * lib/npyio.py, * lib/function_base.py, * fft/fftpack.py, * random/__init__.py Closes #3172
* 2to3: Put `from __future__ import division in every python file.Charles Harris2013-03-011-0/+2
| | | | | | | | This should be harmless, as we already are division clean. However, placement of this import takes some care. In the future a script can be used to append new features without worry, at least until such time as it exceeds a single line. Having that ability will make it easier to deal with absolute imports and printing updates.
* DOC: fix build issues (with latex or newest sphinx)Pauli Virtanen2011-07-151-295/+297
|
* fixed a whole bunch of doctestsPaul Ivanov2009-12-281-6/+9
|
* Import documentation from doc wiki (part 2, work-in-progress docstrings, but ↵Pauli Virtanen2008-10-281-3/+48
| | | | they are still an improvement)
* Move documentation outside of source tree. Remove `doc` import from __init__.Stefan van der Walt2008-08-231-0/+367