Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Replace tabs with spaces. | Charles Harris | 2008-05-01 | 1 | -154/+154 |
| | |||||
* | Remove trailing whitespace. | Charles Harris | 2008-05-01 | 1 | -1/+1 |
| | |||||
* | Remove trailing whitespace. | Charles Harris | 2008-05-01 | 1 | -28/+28 |
| | |||||
* | Fix grammar. | Charles Harris | 2008-05-01 | 1 | -2/+2 |
| | |||||
* | ran reindent in preparation for the 1.1 release | Jarrod Millman | 2008-04-20 | 2 | -4/+2 |
| | |||||
* | adding abreviation for pyplot | Jarrod Millman | 2008-04-13 | 1 | -4/+5 |
| | |||||
* | Add up to date (and slightly cleaned up) support for Cython after porting | Fernando Perez | 2008-04-09 | 11 | -1/+438 |
| | | | | | | | the existing Pyrex one, put in deprecation markers in the old Pyrex dir. The pyrex dir can be removed in a subsequent commit. | ||||
* | Fix ReST syntax in HOWTO_DOCUMENT. | Stefan van der Walt | 2008-03-23 | 1 | -11/+14 |
| | |||||
* | Break lines. | Charles Harris | 2008-03-15 | 1 | -1/+11 |
| | |||||
* | Finish simple example for new data-type and add test. | Travis Oliphant | 2008-03-04 | 2 | -4/+31 |
| | |||||
* | Simple example of an extended data-type. | Travis Oliphant | 2008-03-04 | 3 | -0/+156 |
| | |||||
* | Add PEP-style document describing the NPY format. | Robert Kern | 2008-02-27 | 1 | -0/+294 |
| | |||||
* | ran reindent | Jarrod Millman | 2008-02-08 | 1 | -1/+1 |
| | |||||
* | Set __docformat__ such that epydoc knows it's looking at reST instead of ↵ | Robert Kern | 2008-01-22 | 7 | -123/+131 |
| | | | | epytext. | ||||
* | add more explanation for new standard | Jarrod Millman | 2008-01-22 | 1 | -3/+1 |
| | |||||
* | typo | Jarrod Millman | 2008-01-22 | 1 | -7/+2 |
| | |||||
* | explanation of current situation | Jarrod Millman | 2008-01-22 | 1 | -0/+9 |
| | |||||
* | Add a Raises section to the docstring suggestions. | Travis Oliphant | 2007-12-30 | 1 | -3/+7 |
| | |||||
* | more janitorial work | Jarrod Millman | 2007-12-29 | 4 | -49/+49 |
| | |||||
* | janitorial work | Jarrod Millman | 2007-12-29 | 1 | -12/+14 |
| | |||||
* | Improve the documentation style for human-readability in plain-text | Travis Oliphant | 2007-12-28 | 12 | -275/+273 |
| | |||||
* | typo | Jarrod Millman | 2007-12-28 | 1 | -1/+1 |
| | |||||
* | Fix packbits and unpackbits for new io in numpy. | Travis Oliphant | 2007-12-26 | 1 | -1/+3 |
| | |||||
* | Replace numpy.distutils.exec_command.splitcmdline with shlex.split instead. | cookedm | 2007-12-26 | 1 | -1/+0 |
| | | | | | | | | It has the same problems as our old numpy.distutils.ccompiler.split_quoted. splitcmdline still exists, but uses shlex.split, and issues a DeprecationWarning This has the positive side effect of not having numpy.distutils pulled in when numpy is imported -- there was a use of splitcmdline in numpy.testing. | ||||
* | formatting | Jarrod Millman | 2007-12-16 | 1 | -3/+4 |
| | |||||
* | added new import standards to how to doc | Jarrod Millman | 2007-12-15 | 1 | -0/+4 |
| | |||||
* | Corrected casting logic for numpy array scalars | wfspotz@sandia.gov | 2007-12-02 | 1 | -118/+9 |
| | |||||
* | Argout typemap documentation made more clear. | wfspotz@sandia.gov | 2007-12-01 | 3 | -5/+9 |
| | |||||
* | Changed setting of fortran-order array's flag; corrected documentaion | wfspotz@sandia.gov | 2007-12-01 | 5 | -9/+7 |
| | |||||
* | * Added support for FORTRAN-ordered arrays to numpy.i. | wfspotz@sandia.gov | 2007-11-30 | 11 | -95/+996 |
| | | | | | | | | * Added new tests that test some of the FORTRAN-ordered typemaps. * Updated the documentation to include the new FORTRAN-ordering support. | ||||
* | * Added a new typemap suite, ARGOUTVIEW, which takes a view of a data | wfspotz@sandia.gov | 2007-11-29 | 13 | -147/+1137 |
| | | | | | | | | | | | | buffer and converts it to an output numpy array (1D, 2D and 3D, with before- and after- dimension specifications.) * Added new tests for the ARGOUTVIEW typemaps in the test directory (Array1 and Array2 classes, both included in the Array python extension module, tested in testArray.py). * Updated the documentation to reflect the latest changes. | ||||
* | Added min and max macros to Backward Compatibility fragments | wfspotz@sandia.gov | 2007-11-24 | 2 | -52/+88 |
| | |||||
* | Added new fragment dependency to unsigned long fragment | wfspotz@sandia.gov | 2007-11-24 | 2 | -3/+4 |
| | |||||
* | Added %fragment 'NumPy_Fragments' for convenience | wfspotz@sandia.gov | 2007-11-23 | 1 | -20/+28 |
| | |||||
* | Changed #define to %#define so that they delay implementation | wfspotz@sandia.gov | 2007-11-23 | 1 | -8/+8 |
| | |||||
* | Fixed some typos in the comments | wfspotz@sandia.gov | 2007-11-23 | 1 | -5/+8 |
| | |||||
* | Changed numpy.i so that helper macros and helper functions are now | wfspotz@sandia.gov | 2007-11-23 | 2 | -345/+521 |
| | | | | | | implemented as swig %fragments. This allows me to implement the backward compatibility macros without duplicating them. | ||||
* | Update SWIG typemaps to be C89 compliant (patch by Matthieu Brucher). | Stefan van der Walt | 2007-11-23 | 3 | -20/+22 |
| | | | | Fix filenames in setup.py. Fix tests in Makefile. | ||||
* | Updated documentation to include pyfragments.swg explanation | wfspotz@sandia.gov | 2007-11-22 | 3 | -22/+136 |
| | |||||
* | Added pyfragments.swg, which expands integer type-checking to accept numpy ↵ | wfspotz@sandia.gov | 2007-11-22 | 2 | -2/+225 |
| | | | | array scalars | ||||
* | Added Eric Jones to the list of acknowledgements | wfspotz@sandia.gov | 2007-11-20 | 4 | -9/+9 |
| | |||||
* | ran reindent.py to clean up whitespace | Jarrod Millman | 2007-10-29 | 1 | -1/+0 |
| | |||||
* | added reference to another style guide checking script | Jarrod Millman | 2007-10-29 | 1 | -0/+1 |
| | |||||
* | Some documentation cleanup of disutils. | chris.burns | 2007-10-04 | 1 | -41/+37 |
| | |||||
* | Add Docutils dependency for Epydoc. | chris.burns | 2007-10-02 | 1 | -0/+9 |
| | |||||
* | more rest corrections | Jarrod Millman | 2007-10-02 | 1 | -4/+2 |
| | |||||
* | trying to get the rest right | Jarrod Millman | 2007-10-02 | 1 | -1/+1 |
| | |||||
* | typo | Jarrod Millman | 2007-10-02 | 1 | -2/+4 |
| | |||||
* | more on documentation | Jarrod Millman | 2007-10-02 | 1 | -3/+17 |
| | |||||
* | ReST fixes. | Stefan van der Walt | 2007-09-25 | 4 | -107/+112 |
| |