summaryrefslogtreecommitdiff
path: root/numpy/core/records.py
Commit message (Expand)AuthorAgeFilesLines
* ran reindentJarrod Millman2008-02-081-9/+9
* Improve docstringsTravis Oliphant2007-12-281-0/+55
* ran reindent.py to clean up whitespaceJarrod Millman2007-10-291-1/+1
* Fix record assignment (based on a patch by Sameer DCosta).Stefan van der Walt2007-08-211-6/+5
* Fix problem with records with object elements and add pretty-printing to reco...Travis Oliphant2007-05-151-4/+18
* Change recarray attribute getting to return a view using the class instead of...Travis Oliphant2007-05-091-1/+1
* remove unneeded semi-colon, add missing import, whitespace cleanupsTim Leslie2007-04-131-13/+14
* Fix numpy.core.records doctests.Stefan van der Walt2007-02-181-18/+21
* Whitespace cleanup.Stefan van der Walt2007-01-081-22/+22
* Fix auto-naming in records.pyTravis Oliphant2006-11-041-5/+6
* Fixes when fielddict is NoneTravis Oliphant2006-10-301-2/+2
* Add test for recent fixes to recarray setattr. Replace sb.ndarray with globa...Travis Oliphant2006-10-291-22/+31
* Fix the inability of record arrays to be able to set field data by setting th...Travis Oliphant2006-10-291-4/+15
* Fix ticket #322Travis Oliphant2006-10-051-2/+3
* Fix ticket #320Travis Oliphant2006-10-051-1/+1
* Use .view in-place of astype in rec.array when new dtype is given.Travis Oliphant2006-10-051-8/+4
* Fix #317 typo.Travis Oliphant2006-10-051-1/+1
* Fix so that rec.array copies by default.Travis Oliphant2006-10-051-6/+17
* Fix issue #313. Also make sure shape attribute of dtype object always return...Travis Oliphant2006-10-051-4/+15
* Fix typo.Travis Oliphant2006-10-031-1/+1
* Allow lists to work with rec.array using fromrecords.py. But, tuples are the...Travis Oliphant2006-10-031-1/+1
* Convert to arrays earlier.Travis Oliphant2006-10-031-3/+3
* Use sb.array to handle the array interface.Travis Oliphant2006-10-021-6/+7
* Fix ticket #308 by sending more than just ndarray to fromarray. Also, allow ...Travis Oliphant2006-10-021-4/+14
* Fix ambiguity of list data-type objects. Lists are always interpeted as arra...Travis Oliphant2006-08-171-1/+5
* Fix record class so that it returns chararrays and record arrays as needed as...Travis Oliphant2006-08-111-2/+10
* Fix ticket #202Travis Oliphant2006-07-251-1/+1
* Fix up rec.array when dtype and formats are both None for cases that support ...Travis Oliphant2006-07-191-6/+15
* Fix casting of signed ints to unsigned ints and Change aligned=0 to aligned=F...Travis Oliphant2006-07-111-5/+5
* Fix so formats as dtype is not accepted.Travis Oliphant2006-07-111-41/+25
* Alter order of records.py keyword arguments and allow dtype= keyword or forma...Travis Oliphant2006-07-111-68/+65
* Add the dtype= keyword to records.py functionsTravis Oliphant2006-07-111-5/+14
* Add dtype= keyword to functions for record arrays so that pre-built descripto...Travis Oliphant2006-07-111-26/+65
* Make third argument to recarray.__new__ a keyword.Travis Oliphant2006-07-111-1/+1
* MADE NPY_ versions of all PyArray_ prefixes corresponding to CONSTANTS. Crea...Travis Oliphant2006-07-101-4/+5
* replace some bare except:'scookedm2006-07-101-5/+11
* Add unit-test for record-arrays with object field.Travis Oliphant2006-06-271-2/+8
* Back out accidental change.Travis Oliphant2006-06-271-1/+0
* Fixes for objects in arrays.Travis Oliphant2006-06-271-0/+1
* Fix ticket #104Travis Oliphant2006-05-101-0/+12
* Fix ticket #102 and a few other 1-field descriptions.Travis Oliphant2006-05-091-0/+3
* Added matrix method test from ticket #84Travis Oliphant2006-05-091-1/+0
* Fix field method to always return fields. Fixes ticket #101Travis Oliphant2006-05-091-2/+9
* Fix-up record-array pickling and attribute access errors. Fix minor pickling...Travis Oliphant2006-03-311-4/+23
* Change order of attribute lookup for recarrays. Now, the methods and attribu...Travis Oliphant2006-03-271-10/+9
* Run reindent.py (script distributed with Python) over the source to remove ex...cookedm2006-03-101-21/+20
* Apply Tim's code-checker tests except for white-space-only changes.Travis Oliphant2006-03-061-3/+1
* Added a field method to recarray to allow field access via column name or index.chanley2006-02-151-0/+10
* Fix record-array so sub-classes work.Travis Oliphant2006-02-081-2/+2
* Remove getitem and setitem from record class -- void type does the right thingTravis Oliphant2006-01-311-13/+0