summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
...
* | MAINT: Fix release notes formatting.Charles Harris2013-04-048-105/+101
| | | | | | | | | | Sphinx was complaining about the title/heading hierarchy. This fixes those complaints.
* | Merge pull request #2965 from charris/fix-qr-modeCharles Harris2013-04-041-2/+22
|\ \ | | | | | | Fix qr mode
| * | DOC: Document the new qr modes in the 1.8 release notes.Charles Harris2013-04-011-2/+22
| | |
* | | Merge pull request #460 from endolith/regex_formattingCharles Harris2013-04-031-3/+2
|\ \ \ | |_|/ |/| | DOC: Formatting fixes using regex
| * | DOC: Used regex to find colons missing spaces which render wrong online, ↵endolith2013-03-191-3/+2
| | | | | | | | | | | | also other spacing or formatting mistakes
* | | Merge pull request #3178 from charris/2to3-apply-import-fixernjsmith2013-04-0236-31/+41
|\ \ \ | |_|/ |/| | 2to3 apply import fixer
| * | 2to3: Add `from __future__ import ...` to new files.Charles Harris2013-03-285-0/+10
| | | | | | | | | | | | | | | | | | The new files that came in when doc/sphinxext/numpydoc was restructured as a package with test stubs did not have `from __future__ import ...`. This fixes that omission.
| * | 2to3: Use absolute imports.Charles Harris2013-03-2831-31/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | Merge pull request #3104 from seberg/nditer-allow-0dCharles Harris2013-04-012-3/+15
|\ \ \ | |/ / |/| | Make AdvancedNew iter more 0-d aware
| * | DOC: mention AdvancedNew iterator change in the release notes.Sebastian Berg2013-03-031-0/+7
| | |
| * | DOC: Add documentation clarifying the use of oa_ndimSebastian Berg2013-03-031-3/+8
| | |
* | | 2to3: Replace xrange by range and use list(range(...)) where neededCharles Harris2013-03-272-2/+2
| |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | In python3 range is an iterator and `xrange` has been removed. This has two consequence for code: 1) Where a list is needed `list(range(...))` must be used. 2) `xrange` must be replaced by `range` Both of these changes also work in python2 and this patch makes both. There are three places fixed that do not need it, but I left them in so that the result would be `xrange` clean. Closes #3092
* | DOC: Add mention of PyArray_SetBaseObject stealing a referenceMark Wiebe2013-03-071-2/+4
| |
* | Add texinfo build target for documentTakafumi Arakaki2013-03-022-0/+25
| |
* | BUG: fix NPY_NO_DEPRECATED_API mechanism.Ralf Gommers2013-03-021-2/+5
|/
* DOC: Remove documentation of non-existing advanced iter NA flags.Sebastian Berg2013-03-011-29/+0
|
* 2to3: Put `from __future__ import division in every python file.Charles Harris2013-03-0137-15/+73
| | | | | | | | 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.
* 2to3: Apply `raise` fixes. Closes #3077.Charles Harris2013-03-012-3/+3
| | | | | | | | | | Replaces the raise Exception, msg: form with raise Exception(msg):
* Merge branch 'enh-numpydoc'Charles Harris2013-02-2819-92/+279
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There were some conflicts with the 2to3 work in numpy. I think I got the fixes right. * enh-numpydoc: DOC: fix doc/source/conf.py to work with Python 3 BUG: numpydoc: check that it works with sub-classes TST: numpydoc: more class tests BUG: numpydoc: fix bugs in attribute docstring extraction + improve presentation TST: numpydoc: add stub test files, to check that files at least import MAINT: always use plot directive from Matplotlib, and prefer Sphinx linkcode ENH: numpydoc: Python 2 & 3 in single codebase, restructure as a package ENH: numpydoc: deal with duplicated signatures DOC: numpydoc/linkcode: mention that the extension will be in Sphinx upstream BUG: numpydoc/linkcode: do not detect linkcode config changes Conflicts: doc/sphinxext/numpydoc/docscrape.py doc/sphinxext/numpydoc/docscrape_sphinx.py doc/sphinxext/numpydoc/linkcode.py doc/sphinxext/numpydoc/phantom_import.py doc/sphinxext/numpydoc/traitsdoc.py
| * DOC: fix doc/source/conf.py to work with Python 3Pauli Virtanen2013-02-271-2/+2
| |
| * BUG: numpydoc: check that it works with sub-classesPauli Virtanen2013-02-162-1/+5
| |
| * TST: numpydoc: more class testsPauli Virtanen2013-02-161-2/+114
| |
| * BUG: numpydoc: fix bugs in attribute docstring extraction + improve presentationPauli Virtanen2013-02-162-16/+34
| |
| * TST: numpydoc: add stub test files, to check that files at least importPauli Virtanen2013-02-164-0/+12
| |
| * MAINT: always use plot directive from Matplotlib, and prefer Sphinx linkcodePauli Virtanen2013-02-161-22/+3
| |
| * ENH: numpydoc: Python 2 & 3 in single codebase, restructure as a packagePauli Virtanen2013-02-1614-47/+89
| |
| * ENH: numpydoc: deal with duplicated signaturesPauli Virtanen2013-02-162-7/+25
| |
| * DOC: numpydoc/linkcode: mention that the extension will be in Sphinx upstreamPauli Virtanen2013-02-161-2/+2
| |
| * BUG: numpydoc/linkcode: do not detect linkcode config changesPauli Virtanen2013-02-161-1/+1
| | | | | | | | | | | | Since the linkcode_resolve is a function, it triggers configuration change on each rebuild, resulting to full rebuild always. It's better to make it not do that.
* | Merge pull request #3047 from charris/2to3-callablenjsmith2013-02-286-6/+12
|\ \ | | | | | | 2to3: Fix callable.
| * | 2to3: Fix callable.Charles Harris2013-02-286-6/+12
| | |
* | | Merge pull request #3059 from charris/2to3-funcattrsnjsmith2013-02-281-1/+1
|\ \ \ | | | | | | | | 2to3: Apply `funcattrs` fixer. Closes #3058.
| * | | 2to3: Apply `funcattrs` fixer. Closes #3058.Charles Harris2013-02-281-1/+1
| |/ / | | | | | | | | | | | | This replaces the `b.func_xxxx` with newer `__xxxx__` attribute names For example, `f.__name__` replaces `f.func_name`
* | | 2to3: apply exec fixer results.Charles Harris2013-02-282-7/+7
|/ / | | | | | | This changes the `exec` command to the `exec` function.
* | Merge pull request #3027 from charris/2to3-remove-has_key-updateseberg2013-02-272-4/+4
|\ \ | | | | | | 2to3: Remove `has_key` use that was missed.
| * | 2to3: Remove `has_key` use that was missed.Charles Harris2013-02-272-4/+4
| |/ | | | | | | | | The files not in the numpy/ directory were missed. This gets them all (I hope).
* | 2to3: Updata `except Exception, msg:` syntax in files not in numpy/ .Charles Harris2013-02-272-4/+4
|/ | | | This should finish the updating of the exception syntax.
* DOC: update 1.7.0-notes.rst from release branchOndřej Čertík2013-02-061-0/+43
| | | | | | There were some changes in the release branch that were not put into master. After this commit, the file 1.7.0-notes.rst is synchronised with the release branch.
* DOC: mention the change of default for separate compilation.David Cournapeau2013-01-241-0/+11
|
* Merge pull request #2725 from seberg/take_0dseberg2013-01-231-0/+1
|\ | | | | ENH: Allow 0-d indexes in np.take
| * ENH: Allow 0-d indexes in np.takeSebastian Berg2013-01-061-0/+1
| | | | | | | | | | | | | | The TakeFrom already supported this. This removes the check which made it not possible and adds some tests for take. Also add documentation and information to the release notes.
* | fix numpy.i for python 3Martin Baeuml2013-01-161-1/+3
| | | | | | | | | | | | | | PyFile_Check and PyInstance_Check have been removed from the C API for python 3. This removes calls to those two functions from numpy.i for PY_MAJOR_VERSION >= 3 so that it builds with a python 3 Python.h.
* | DEP: Remove more references to scons related files.Charles Harris2013-01-141-1/+1
| | | | | | | | | | | | | | These references were in MANIFEST.in, doc/summarize.py, release.sh, and numpy/testing/noseclasses.py and involved scons files that have been removed, mostly setupscons.py and setupsconsegg.py that were in the top level.
* | BUG: Need to keep pointer to using scons in HOWTO_RELEASE.rst.txt.Charles Harris2013-01-131-1/+2
| |
* | DOC: Document removal of SCons support in doc/release/1.8-notes.rst.Charles Harris2013-01-131-3/+8
| |
* | DEP: Remove scons related files and code.Charles Harris2013-01-131-2/+1
|/ | | | | | | | | This removes files and code supporting scons builds. After this change numpy will only support builds using distutils or bento. The removal of scons has been discussed on the list several times and a decision has been made that scons support is no longer needed. This was originally discussed for numpy 1.7 and because the distutils and bento methods are still available we are skipping the usual deprecation period.
* fix array interface documentation linksSandro Tosi2012-12-301-1/+1
|
* move to www.numpy.orgSandro Tosi2012-12-302-2/+2
|
* DOC: document the change in .baseOndřej Čertík2012-12-271-0/+27
| | | | Forwardport gh-2737.
* Merge pull request #2835 from charris/update-1.8.0-notesRalf Gommers2012-12-161-117/+14
|\ | | | | MAINT: Cleanup 1.8.0-notes.rst.