Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #268 from FrancescAlted/master | Mark | 2012-05-18 | 1 | -0/+4 |
|\ | | | | | The docs should stress that functions that create arrays actually steals a reference to dtype descriptor | ||||
| * | Stress that all array creation C functions steals a reference to descr. | Francesc Alted | 2012-05-04 | 1 | -0/+4 |
| | | |||||
* | | NEP: Add some details about how existing C-API access interacts with NA | Mark Wiebe | 2012-05-10 | 1 | -0/+77 |
| | | |||||
* | | DOC: verbosity -> verbose in testing guidelines | Denis Laxalde | 2012-05-10 | 1 | -14/+14 |
| | | |||||
* | | REL: change Sphinx version in release script to 1.1.3. | Ralf Gommers | 2012-05-04 | 1 | -1/+1 |
|/ | | | | | | | | Version 1.0.4 was used till now, but has become too old. New version gives far fewer warnings and thereby increases the reference guide with O(100) pages that previously got lost. Also update current Cython version number. | ||||
* | DOC: Add datetime to the changed items in the release notes. | Charles Harris | 2012-05-01 | 1 | -0/+7 |
| | |||||
* | DOC: Add a section documenting 1.6/1.7 datetime64 differences | Mark Wiebe | 2012-05-01 | 1 | -0/+127 |
| | |||||
* | DOC: fix link and add explanation on how to run examples. | Ralf Gommers | 2012-04-18 | 1 | -2/+16 |
| | |||||
* | DOC: Update documentation and release notes about C-API deprecations | Mark Wiebe | 2012-04-06 | 3 | -5/+58 |
| | |||||
* | ENH: Add module containing functions for padding n-dimensional arrays. | tim cera | 2012-04-04 | 3 | -22/+44 |
| | | | | | | | | | | | | | The various padding functions are exposed as options to a public 'pad' function. Example: pad(a, 5, mode='mean') Current modes are 'constant', 'edge', 'linear_ramp', 'maximum', 'mean', 'median', 'minimum', 'reflect', 'symmetric', 'wrap', and <function> This commit includes unit tests and doctests and is based on feature request ticket #655. | ||||
* | ENH: Add 'sorter' argument to searchsorted. | Bryan Van de Ven | 2012-04-04 | 1 | -0/+6 |
| | | | | | | | | The new argument allows one to search an argsorted array by passing in the result of argsorting the array as the 'sorter' argument. For example searchsorted(a, sorter=a.argsort) | ||||
* | DOC: label datetime support as experimental. Closes #2072. | Ralf Gommers | 2012-03-30 | 2 | -0/+11 |
| | |||||
* | DOC: label the current NA implementation as experimental in 1.7.x | Ralf Gommers | 2012-03-30 | 2 | -0/+10 |
| | | | | This has been extensively discussed on the mailing list. See #2072. | ||||
* | MAINT: port few missing changes to 1.6.0 release notes from 1.6.x branch. | Ralf Gommers | 2012-03-26 | 1 | -6/+0 |
| | |||||
* | DOC: generate links to source code | Pauli Virtanen | 2012-03-11 | 2 | -0/+143 |
| | |||||
* | Merge pull request #219 from mwiebe/test_warn_param | Ralf Gommers | 2012-03-06 | 2 | -7/+10 |
|\ | | | | | | | | | | | Add parameters in NoseTester constructor as well as in NoseTester.test() to control which warnings raise an error. An explicit difference is made between the master branch and release branches. This was mentioned on the ML: http://thread.gmane.org/gmane.comp.python.numeric.general/48210 | ||||
| * | TST: add some string kw options to simplify switching NoseTester behavior. | Ralf Gommers | 2012-03-04 | 1 | -2/+1 |
| | | |||||
| * | TST: add "raise on warning" behavior to NoseTester constructor. | Ralf Gommers | 2012-03-04 | 2 | -7/+11 |
| | | | | | | | | | | Also document that behavior has to be switched for a release, and remove comments on turning on deprecation warnings that don't apply anymore. | ||||
* | | ENH: Made "isclose()" NA-aware, added release note and versionadded. | Joe Kington | 2012-03-04 | 1 | -0/+7 |
|/ | |||||
* | Fix typo (all ready -> already) | Jason Grout | 2012-03-04 | 1 | -1/+1 |
| | |||||
* | DOC: merge wiki doc edits. | Ralf Gommers | 2012-03-03 | 3 | -7/+9 |
| | |||||
* | DOC: Add a C style guide. | Charles Harris | 2012-03-03 | 1 | -0/+220 |
| | |||||
* | DOC: add to release HOWTO that the C API version should be updated. | Ralf Gommers | 2012-02-05 | 1 | -4/+13 |
| | |||||
* | DOC: clarify numpy version for removal, document sed script better. | Charles Harris | 2012-02-04 | 1 | -1/+1 |
| | |||||
* | STY: Fix up the 2.0 (1.7) release notes. | Charles Harris | 2012-02-04 | 1 | -5/+11 |
| | |||||
* | DEP: Deprecate the old_defines.h header and the macros therein. | Charles Harris | 2012-02-04 | 1 | -5/+16 |
| | | | | | | The old_defines.h file is no longer included in ndarrayobject.h, but instead in the npy_deprecated_api.h file. It is no longer part of the numpy build and its deprecation is noted in the release notes. | ||||
* | DOC: numpybook - Replace macro names in old_defines.h with new. | Charles Harris | 2012-02-04 | 1 | -26/+26 |
| | |||||
* | DOC: Replace references to macros in old_defines with new. | Charles Harris | 2012-02-04 | 6 | -133/+21 |
| | | | | | Also remove swig support for numpy < 1 from numpy.i since it expects the old macros. | ||||
* | STY: Replace more found macros in old_defines.h with new. | Charles Harris | 2012-02-04 | 1 | -2/+2 |
| | |||||
* | DOC: Document macro changes in release notes. | Charles Harris | 2012-01-27 | 1 | -0/+9 |
| | |||||
* | DOC: Improve numpy reference documentation of polynomial classes. | Charles Harris | 2012-01-09 | 3 | -16/+26 |
| | | | | | Add more explanation of what happens in polynomial substitution and also of its use in casting between types. Clean up some rst glitches. | ||||
* | DOC: Move removing deprecated imports note to deprecation section. | Charles Harris | 2012-01-09 | 1 | -2/+2 |
| | |||||
* | DOC: Document new polynomial package functionality in the release notes. | Charles Harris | 2012-01-09 | 1 | -1/+22 |
| | |||||
* | DOC: Document the use of the polynomial convenience classes. | Charles Harris | 2012-01-09 | 1 | -10/+337 |
| | |||||
* | DOC: Lower toc number of levels. | Charles Harris | 2012-01-09 | 1 | -1/+1 |
| | |||||
* | DOC: Add version added to some of the polynomial package modules. | Charles Harris | 2012-01-09 | 7 | -0/+14 |
| | |||||
* | BUG: Fix up links to classes. | Charles Harris | 2012-01-09 | 6 | -12/+11 |
| | | | | | The Sphinx markup was incorrect the documentation to the polynomial convenience classes wasn't being generated. | ||||
* | DOC: Rearrange the polynomial documents. | Charles Harris | 2012-01-09 | 9 | -14/+567 |
| | | | | | This is the first step in cleaning up the polynomial documentation and writing an instructional section on the convenience classes. | ||||
* | FIX: Add release notes, use inverse cdf method for non-uniform | Chris Jordan-Squire | 2011-12-17 | 1 | -1/+3 |
| | | | | | sampling with replacement, change searchsorted to use side='right', and regenerate mtrand.c. | ||||
* | FIX: Changed named to choice, reverted other changes. | Chris Jordan-Squire | 2011-12-17 | 1 | -0/+3 |
| | |||||
* | ENH: New sample function, bugs in tests fixed | Chris Jordan-Squire | 2011-12-16 | 1 | -0/+1 |
| | |||||
* | DOC: describe required version of GCC in MinGW on Windows in release doc. | Ralf Gommers | 2011-10-04 | 1 | -1/+3 |
| | |||||
* | DOC: add note on formatting math to HOWTO_DOCUMENT. | Ralf Gommers | 2011-09-27 | 1 | -0/+11 |
| | |||||
* | STY: Fix spelling and reword text. | Charles Harris | 2011-09-17 | 1 | -8/+8 |
| | |||||
* | DOC: numpydoc.py was still using old, scipy trac url in docstring | Valentin Haenel | 2011-09-17 | 1 | -1/+1 |
| | |||||
* | DOC: mention numpydoc in numpy conventions | Valentin Haenel | 2011-09-17 | 1 | -0/+20 |
| | | | | | Explain why it's good to use numpydoc and link to both numpydoc and some installation and usage instructions. | ||||
* | DOC: Add note about <ufunc>.reduce evaluation order | Mark Wiebe | 2011-08-31 | 1 | -0/+6 |
| | |||||
* | ENH: missingdata: Make PyArray_Converter and PyArray_OutputConverter safer ↵ | Mark Wiebe | 2011-08-27 | 3 | -4/+28 |
| | | | | | | | | for legacy code These functions now reject inputs with NA, and there are alternative functions PyArray_AllowNAConverter and PyArray_OutputAllowNAConverter that functions should use when they intend to support NA. | ||||
* | DOC: missingdata: Add a mention of the design NEP, and masks vs bitpatterns | Mark Wiebe | 2011-08-27 | 1 | -0/+8 |
| | |||||
* | DOC: missingdata: Updates from pull request feedback | Mark Wiebe | 2011-08-27 | 2 | -22/+28 |
| | | | | From Chris Jordan-Squire |