summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* ENH: core: add .dot() method to ndarrays; a.dot(b) == np.dot(a, b)Pauli Virtanen2010-04-301-0/+13
|
* Add NEP for group-by additions to NumPy: reduceby, reducein, segment, and edges.Travis Oliphant2010-04-291-0/+112
|
* Move 1.5.0 release notes to 2.0.0.Charles Harris2010-04-271-1/+1
|
* Fix bug where __init__ was accessed for objects that might not have it.Fernando Perez2010-04-141-1/+2
|
* 3K: doc: note that f2py is now partly ported, and that capsules are usedPauli Virtanen2010-03-071-9/+6
|
* 3K: doc: note that f2py hasn't been really ported yetPauli Virtanen2010-02-221-0/+12
|
* 3K: doc: some updates to 3K porting notesPauli Virtanen2010-02-211-31/+50
|
* 3K: doc: note about consequences of removed Py_TPFLAGS_CHECKTYPESPauli Virtanen2010-02-211-0/+21
|
* 3K: lib: fix some bytes vs. str issues in _iotools.py and io.py -- mainly ↵Pauli Virtanen2010-02-201-0/+10
| | | | genfromtxt
* 3K: doc: note in Py3K porting log that intp('0xff', 16) does not work any morePauli Virtanen2010-02-201-0/+6
|
* 3K: doc: update porting documentationPauli Virtanen2010-02-201-1/+23
|
* 3K: doc: update Py3K port documentationPauli Virtanen2010-02-201-45/+77
|
* updated documentation from pydoc website (thanks to everyone who contributed!)Jarrod Millman2010-02-1722-322/+395
|
* API and ABI changes: Removed BigArrayType, Fixed hasobject to an integer ↵Travis Oliphant2010-02-156-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 uploadJarrod Millman2010-01-161-4/+0
|
* mv build to _buildJarrod Millman2010-01-161-29/+29
|
* point conf to the default static contentJarrod Millman2010-01-161-1/+1
|
* consolidating static content in one locationJarrod Millman2010-01-166-0/+0
|
* point everything to top-level dirJarrod Millman2010-01-162-2/+2
|
* moving content up a level from sourceJarrod Millman2010-01-169-0/+0
|
* mv theme to _themeJarrod Millman2010-01-167-1/+1
|
* add make webupJarrod Millman2010-01-161-0/+4
|
* missed a few linksJarrod Millman2010-01-151-3/+3
|
* fixed broken linksJarrod Millman2010-01-151-3/+3
|
* make master TOC pageJarrod Millman2009-12-291-29/+4
|
* adding scipy icon bar to top of the pageJarrod Millman2009-12-298-0/+32
|
* Added div to center align the ohloh stats.madhusudancs2009-12-291-0/+2
|
* forgot to check-in the main page templateJarrod Millman2009-12-291-0/+44
|
* converting the main page from rest to an html template and add ohloh linkJarrod Millman2009-12-293-2/+3
|
* ENH: emit ComplexWarning when casting complex to real (addresses #1319)Pauli Virtanen2009-12-101-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 allPauli Virtanen2009-12-061-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 notesPauli Virtanen2009-12-061-0/+8
|
* doc: more Py3 notesPauli Virtanen2009-12-061-2/+176
|
* doc: update Py3K notesPauli Virtanen2009-12-061-305/+475
|
* Py3K notes: update notes Re Unicode and PicklingPauli Virtanen2009-12-061-21/+22
|
* 3K: core: PyString conversion in descriptor.cPauli Virtanen2009-12-061-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 Cournapeau2009-12-041-1/+3
| | | | release notes.
* DOC: there is no acorrelate function.David Cournapeau2009-11-261-1/+0
|
* numpy.datetime --> numpy.datetime_ and fix Descr_FromScalar to correctly add ↵Travis Oliphant2009-11-231-2/+19
| | | | DateTime Meta data.
* ENH: add an assert_warns testing utility.David Cournapeau2009-11-232-0/+3
|
* doc: rewrite latex-offending markupPauli Virtanen2009-11-191-14/+9
|
* Fix problem in divisor conversion for datetime construction and fix ↵Travis Oliphant2009-11-191-21/+24
| | | | formating of datetime nep.
* Mention the new polynomial and chebyshev modules in the release notes.Charles Harris2009-11-141-0/+19
|
* sphinxext: fix a small bug in docscrapePauli Virtanen2009-11-141-2/+2
|
* sphinxext: add numpydoc_show_class_members option (from Michael Droettboom)Pauli Virtanen2009-11-136-36/+108
|
* second set of checkins from doc editorJarrod Millman2009-11-138-106/+159
|
* DOC: add npy_nextafter/npy_spacing in doc ref.David Cournapeau2009-11-101-0/+22
|
* doc/release: add information about arraysetops changes (from Neil Crighton)Pauli Virtanen2009-11-091-1/+25
|
* docs: document r7697 in release notesPauli Virtanen2009-11-071-0/+10
|
* docs : renamed basic.io.rst and basic.io.genfromtxt to basics.io and ↵pierregm2009-11-073-1/+3
| | | | | | basics.io.genfromtxt io.genfromtxt : update the doc