Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ENH: core: add .dot() method to ndarrays; a.dot(b) == np.dot(a, b) | Pauli Virtanen | 2010-04-30 | 1 | -0/+13 |
| | |||||
* | Add NEP for group-by additions to NumPy: reduceby, reducein, segment, and edges. | Travis Oliphant | 2010-04-29 | 1 | -0/+112 |
| | |||||
* | Move 1.5.0 release notes to 2.0.0. | Charles Harris | 2010-04-27 | 1 | -1/+1 |
| | |||||
* | Fix bug where __init__ was accessed for objects that might not have it. | Fernando Perez | 2010-04-14 | 1 | -1/+2 |
| | |||||
* | 3K: doc: note that f2py is now partly ported, and that capsules are used | Pauli Virtanen | 2010-03-07 | 1 | -9/+6 |
| | |||||
* | 3K: doc: note that f2py hasn't been really ported yet | Pauli Virtanen | 2010-02-22 | 1 | -0/+12 |
| | |||||
* | 3K: doc: some updates to 3K porting notes | Pauli Virtanen | 2010-02-21 | 1 | -31/+50 |
| | |||||
* | 3K: doc: note about consequences of removed Py_TPFLAGS_CHECKTYPES | Pauli Virtanen | 2010-02-21 | 1 | -0/+21 |
| | |||||
* | 3K: lib: fix some bytes vs. str issues in _iotools.py and io.py -- mainly ↵ | Pauli Virtanen | 2010-02-20 | 1 | -0/+10 |
| | | | | genfromtxt | ||||
* | 3K: doc: note in Py3K porting log that intp('0xff', 16) does not work any more | Pauli Virtanen | 2010-02-20 | 1 | -0/+6 |
| | |||||
* | 3K: doc: update porting documentation | Pauli Virtanen | 2010-02-20 | 1 | -1/+23 |
| | |||||
* | 3K: doc: update Py3K port documentation | Pauli Virtanen | 2010-02-20 | 1 | -45/+77 |
| | |||||
* | updated documentation from pydoc website (thanks to everyone who contributed!) | Jarrod Millman | 2010-02-17 | 22 | -322/+395 |
| | |||||
* | API and ABI changes: Removed BigArrayType, Fixed hasobject to an integer ↵ | Travis Oliphant | 2010-02-15 | 6 | -13/+25 |
| | | | | (and inserted an unused character for alignment) and renamed it to flags. Re-organized the ArrFuncs structure. Moved NPY_DATETIME and friends to their 'correct' place in the type order. | ||||
* | remove webup, use upload | Jarrod Millman | 2010-01-16 | 1 | -4/+0 |
| | |||||
* | mv build to _build | Jarrod Millman | 2010-01-16 | 1 | -29/+29 |
| | |||||
* | point conf to the default static content | Jarrod Millman | 2010-01-16 | 1 | -1/+1 |
| | |||||
* | consolidating static content in one location | Jarrod Millman | 2010-01-16 | 6 | -0/+0 |
| | |||||
* | point everything to top-level dir | Jarrod Millman | 2010-01-16 | 2 | -2/+2 |
| | |||||
* | moving content up a level from source | Jarrod Millman | 2010-01-16 | 9 | -0/+0 |
| | |||||
* | mv theme to _theme | Jarrod Millman | 2010-01-16 | 7 | -1/+1 |
| | |||||
* | add make webup | Jarrod Millman | 2010-01-16 | 1 | -0/+4 |
| | |||||
* | missed a few links | Jarrod Millman | 2010-01-15 | 1 | -3/+3 |
| | |||||
* | fixed broken links | Jarrod Millman | 2010-01-15 | 1 | -3/+3 |
| | |||||
* | make master TOC page | Jarrod Millman | 2009-12-29 | 1 | -29/+4 |
| | |||||
* | adding scipy icon bar to top of the page | Jarrod Millman | 2009-12-29 | 8 | -0/+32 |
| | |||||
* | Added div to center align the ohloh stats. | madhusudancs | 2009-12-29 | 1 | -0/+2 |
| | |||||
* | forgot to check-in the main page template | Jarrod Millman | 2009-12-29 | 1 | -0/+44 |
| | |||||
* | converting the main page from rest to an html template and add ohloh link | Jarrod Millman | 2009-12-29 | 3 | -2/+3 |
| | |||||
* | ENH: emit ComplexWarning when casting complex to real (addresses #1319) | Pauli Virtanen | 2009-12-10 | 1 | -0/+29 |
| | | | | | Casting complex numbers to real discards the imaginary part, which may be unexpected. For safety, emit a warning when this occurs. | ||||
* | BUG: add a work-around for #1312 -- don't define bf_releasebuffer at all | Pauli Virtanen | 2009-12-06 | 1 | -0/+41 |
| | | | | | | | | | | | | | | | The problem is that PyArg_ParseTuple("s#", ...) does not accept objects with the new buffer interface, if they have bf_releasebuffer defined. We now work around this by not defining bf_releasebuffer, and releasing any info associated with the buffer interface when array or its descriptor is deallocated. The shape+strides information for arrays stays static due to the refcounting lock. The format information for dtypes may change if field names are changed on-the-fly. XXX: dtype field name changes are not currently handled. | ||||
* | doc: add stub release notes | Pauli Virtanen | 2009-12-06 | 1 | -0/+8 |
| | |||||
* | doc: more Py3 notes | Pauli Virtanen | 2009-12-06 | 1 | -2/+176 |
| | |||||
* | doc: update Py3K notes | Pauli Virtanen | 2009-12-06 | 1 | -305/+475 |
| | |||||
* | Py3K notes: update notes Re Unicode and Pickling | Pauli Virtanen | 2009-12-06 | 1 | -21/+22 |
| | |||||
* | 3K: core: PyString conversion in descriptor.c | Pauli Virtanen | 2009-12-06 | 1 | -0/+513 |
| | | | | | | | | | Field names are PyUString. In Py3, fields dict contains only Unicode. On Py2, however, still allow Bytes or Unicode titles to go in fields dict, that all of Py2 semantics stay unchanged. | ||||
* | DOC: point out the documention for neighborhood iterator in the 1.4.0 ↵ | David Cournapeau | 2009-12-04 | 1 | -1/+3 |
| | | | | release notes. | ||||
* | DOC: there is no acorrelate function. | David Cournapeau | 2009-11-26 | 1 | -1/+0 |
| | |||||
* | numpy.datetime --> numpy.datetime_ and fix Descr_FromScalar to correctly add ↵ | Travis Oliphant | 2009-11-23 | 1 | -2/+19 |
| | | | | DateTime Meta data. | ||||
* | ENH: add an assert_warns testing utility. | David Cournapeau | 2009-11-23 | 2 | -0/+3 |
| | |||||
* | doc: rewrite latex-offending markup | Pauli Virtanen | 2009-11-19 | 1 | -14/+9 |
| | |||||
* | Fix problem in divisor conversion for datetime construction and fix ↵ | Travis Oliphant | 2009-11-19 | 1 | -21/+24 |
| | | | | formating of datetime nep. | ||||
* | Mention the new polynomial and chebyshev modules in the release notes. | Charles Harris | 2009-11-14 | 1 | -0/+19 |
| | |||||
* | sphinxext: fix a small bug in docscrape | Pauli Virtanen | 2009-11-14 | 1 | -2/+2 |
| | |||||
* | sphinxext: add numpydoc_show_class_members option (from Michael Droettboom) | Pauli Virtanen | 2009-11-13 | 6 | -36/+108 |
| | |||||
* | second set of checkins from doc editor | Jarrod Millman | 2009-11-13 | 8 | -106/+159 |
| | |||||
* | DOC: add npy_nextafter/npy_spacing in doc ref. | David Cournapeau | 2009-11-10 | 1 | -0/+22 |
| | |||||
* | doc/release: add information about arraysetops changes (from Neil Crighton) | Pauli Virtanen | 2009-11-09 | 1 | -1/+25 |
| | |||||
* | docs: document r7697 in release notes | Pauli Virtanen | 2009-11-07 | 1 | -0/+10 |
| | |||||
* | docs : renamed basic.io.rst and basic.io.genfromtxt to basics.io and ↵ | pierregm | 2009-11-07 | 3 | -1/+3 |
| | | | | | | basics.io.genfromtxt io.genfromtxt : update the doc |