This is an archival dump of old wiki content --- see scipy.org for current material

NumPy 0.9.4 adds some enhancements and bug-fixes.

New Features since 0.9.2:

-- .dtype attribute now returns a data-type object and is the only

-- added array set operations (thanks to Robert Cimrman):

-- object arrays now return the underlying object on indexing

-- use better functions for inverse hyperbolic functions if they are

-- None converts to nan in floating-point array constructor from

-- fromstring function can now interpret ASCII strings with

-- allow resize(a,0)

-- rank-0 indexing improvements (x[...] and x[()] now allowed)

-- added a constant to umath namespace that indicates if IEEE Error

-- array and array_wrap special methods can define context

-- speed improvements to _dotblas.c for transposed matrices.

-- improved masked array compatibility

-- .view(subtype) now allows viewing an ndarray as another subclass.

-- numpy.dual now uses a register_func interface instead of importing

-- version checking added for C-API so import of old API fails.

-- optimizations for old-style array indexing.

-- interned bool_(0) (False_) and bool_(1) (True_) and scalar-math

* Many Bugfixes -- see changelog

Changes:


r1831 | pearu | 2006-01-05 14:59:14 -0700 (Thu, 05 Jan 2006) | 1 line

Added fftw2,fftw3,fft_opt info classes.


r1832 | oliphant | 2006-01-05 19:12:50 -0700 (Thu, 05 Jan 2006) | 1 line

Fixed error in setflags and added a few unit tests for test_multiarray


r1833 | oliphant | 2006-01-05 20:15:13 -0700 (Thu, 05 Jan 2006) | 1 line

Fixed namespace issue.


r1834 | sasha | 2006-01-05 20:27:18 -0700 (Thu, 05 Jan 2006) | 2 lines

Fixed printing of the masked objects


r1835 | oliphant | 2006-01-05 22:22:27 -0700 (Thu, 05 Jan 2006) | 1 line

Fix-up so that masked array returns masked array when ufunc does the adding.


r1836 | oliphant | 2006-01-05 22:52:23 -0700 (Thu, 05 Jan 2006) | 1 line

Allow resize(a,0)


r1837 | sasha | 2006-01-05 23:28:38 -0700 (Thu, 05 Jan 2006) | 2 lines

added a test case for mixed operands


r1838 | pearu | 2006-01-06 03:06:32 -0700 (Fri, 06 Jan 2006) | 1 line

Included locals info to error on negep.


r1839 | oliphant | 2006-01-06 03:14:10 -0700 (Fri, 06 Jan 2006) | 1 line

Added new feature to .view method so that if the argument is a sub-type of the ndarray, an object is returned with all the information of the array.


r1840 | oliphant | 2006-01-06 03:16:55 -0700 (Fri, 06 Jan 2006) | 1 line

Fixed small error.


r1841 | oliphant | 2006-01-06 03:31:45 -0700 (Fri, 06 Jan 2006) | 1 line

Fixed up errors..


r1842 | pearu | 2006-01-06 03:44:34 -0700 (Fri, 06 Jan 2006) | 1 line

Fixed import for undefined triu.


r1843 | oliphant | 2006-01-06 14:06:12 -0700 (Fri, 06 Jan 2006) | 1 line

A few cleanups to error code in PyArray_NewFromDescr. Some checks so that certain subclassees cannot be created inappropriately by .view()


r1844 | oliphant | 2006-01-06 14:16:37 -0700 (Fri, 06 Jan 2006) | 1 line

Slight change for memmap


r1845 | oliphant | 2006-01-06 14:19:49 -0700 (Fri, 06 Jan 2006) | 1 line

Renamed module file to minimize confusion.


r1846 | oliphant | 2006-01-06 14:21:03 -0700 (Fri, 06 Jan 2006) | 1 line

Minor cleanup.


r1847 | oliphant | 2006-01-06 14:27:55 -0700 (Fri, 06 Jan 2006) | 1 line

Added some more tests.


r1848 | sasha | 2006-01-06 16:50:22 -0700 (Fri, 06 Jan 2006) | 2 lines

chararray -> defchararray


r1849 | pearu | 2006-01-07 07:35:21 -0700 (Sat, 07 Jan 2006) | 1 line

Fixed missing _obj2str attr bug.


r1850 | sasha | 2006-01-07 22:39:19 -0700 (Sat, 07 Jan 2006) | 12 lines

Fixed the following bug:

>>> from numpy.core.ma import * >>> array(1,mask=0).filled().dtype <type 'object_arrtype'>

Now:

>>> array(1,mask=0).filled().dtype <type 'int32_arrtype'>


r1851 | sasha | 2006-01-07 23:45:56 -0700 (Sat, 07 Jan 2006) | 2 lines

Fixed printing of masked arrays


r1852 | sasha | 2006-01-08 00:07:40 -0700 (Sun, 08 Jan 2006) | 2 lines

Fixed the case when scalar mask is not None but False (see r1850)


r1853 | oliphant | 2006-01-08 00:15:18 -0700 (Sun, 08 Jan 2006) | 1 line

Fixed up so that at least element-size is allocated and iterator of size-0 raises an error


r1854 | pearu | 2006-01-08 03:18:21 -0700 (Sun, 08 Jan 2006) | 1 line

Fixing scipy.lib and numpy.lib names conflict.


r1855 | sasha | 2006-01-08 07:50:54 -0700 (Sun, 08 Jan 2006) | 3 lines

Fixed a failure in test_ma reported by Nils Wagner See http://aspn.activestate.com/ASPN/Mail/Message/scipy-dev/2969615


r1856 | oliphant | 2006-01-08 19:44:21 -0700 (Sun, 08 Jan 2006) | 1 line

Undo size-0 iteration changes and fix possible core dump in PyArray_Return.


r1857 | sasha | 2006-01-08 21:33:38 -0700 (Sun, 08 Jan 2006) | 5 lines

Undo r1855. x[m] does not raise ValueError anymore.

See Travis' r1836.


r1858 | pearu | 2006-01-09 01:52:36 -0700 (Mon, 09 Jan 2006) | 1 line

Documenting global_symbols in doc and fixed formatting.


r1859 | pearu | 2006-01-09 03:07:59 -0700 (Mon, 09 Jan 2006) | 1 line

Fixed pkgload docs.


r1860 | pearu | 2006-01-09 03:15:21 -0700 (Mon, 09 Jan 2006) | 1 line

Improved warning message for non-existing packages in pkgload call.


r1861 | rc | 2006-01-09 05:09:24 -0700 (Mon, 09 Jan 2006) | 1 line

Arraysetops added to numpy.lib


r1862 | pearu | 2006-01-09 05:26:14 -0700 (Mon, 09 Jan 2006) | 1 line

Fixed multiarray.dot([],[]).


r1863 | oliphant | 2006-01-09 16:23:57 -0700 (Mon, 09 Jan 2006) | 1 line

Fixed missing keyword.


r1864 | sasha | 2006-01-10 09:07:32 -0700 (Tue, 10 Jan 2006) | 1 line

allow x[...] and x[()] for zero rank ndarray x


r1865 | oliphant | 2006-01-10 16:46:52 -0700 (Tue, 10 Jan 2006) | 1 line

Fixed up segfault and error in r_


r1866 | sasha | 2006-01-10 17:17:47 -0700 (Tue, 10 Jan 2006) | 1 line

implemented a[...] = v and a[()] = v for zero rank a


r1867 | oliphant | 2006-01-10 17:52:55 -0700 (Tue, 10 Jan 2006) | 1 line

Added floating point support and changed default number of MAX_DIMS to 20


r1868 | oliphant | 2006-01-10 17:58:55 -0700 (Tue, 10 Jan 2006) | 1 line

Fixed up bad-checkin of ufunc code.


r1869 | oliphant | 2006-01-10 19:26:27 -0700 (Tue, 10 Jan 2006) | 1 line

Added openBSD and FreeBSD checks.


r1870 | oliphant | 2006-01-10 19:29:50 -0700 (Tue, 10 Jan 2006) | 1 line

Added check for floating point support.


r1871 | sasha | 2006-01-10 20:25:42 -0700 (Tue, 10 Jan 2006) | 1 line

implemented newaxis support for zero rank arrays


r1872 | sasha | 2006-01-10 21:24:47 -0700 (Tue, 10 Jan 2006) | 1 line

Spell newaxis in lower case in error messages and comments


r1873 | oliphant | 2006-01-10 23:08:56 -0700 (Tue, 10 Jan 2006) | 1 line

allow assignment with multiple same indices as susbscripting. Limit to 1 ellipsis object for 0d array subscripting.


r1874 | oliphant | 2006-01-11 00:12:58 -0700 (Wed, 11 Jan 2006) | 1 line

Improved object array-scalar types


r1875 | oliphant | 2006-01-11 00:18:26 -0700 (Wed, 11 Jan 2006) | 1 line

Change the order of attribute lookup for object array types.


r1876 | oliphant | 2006-01-11 00:27:46 -0700 (Wed, 11 Jan 2006) | 1 line

Don't wrap ndarray's in object array wrappers.


r1877 | oliphant | 2006-01-11 01:27:34 -0700 (Wed, 11 Jan 2006) | 1 line

Rename arguments in arraysetops to follow convention. Add bsum for builtin sum.


r1878 | oliphant | 2006-01-11 01:38:19 -0700 (Wed, 11 Jan 2006) | 1 line

Add support for generators in NumPy sum


r1879 | oliphant | 2006-01-11 02:34:13 -0700 (Wed, 11 Jan 2006) | 1 line

Fix arraysetops.


r1880 | oliphant | 2006-01-11 02:35:51 -0700 (Wed, 11 Jan 2006) | 1 line

Don't return Object Array Scalars.


r1881 | oliphant | 2006-01-11 02:53:43 -0700 (Wed, 11 Jan 2006) | 1 line

Fixed-up tests we are not returning object array scalars...


r1882 | oliphant | 2006-01-11 11:36:18 -0700 (Wed, 11 Jan 2006) | 1 line

Fix up use of aligned keyword.


r1883 | sasha | 2006-01-11 16:15:13 -0700 (Wed, 11 Jan 2006) | 1 line

started filling in missing ma.array methods


r1884 | cookedm | 2006-01-11 19:45:53 -0700 (Wed, 11 Jan 2006) | 3 lines

Use better functions for inverse hyperbolic functions, and expose log1p and expm1. The functions are transformations mainly due to Kahan.


r1885 | cookedm | 2006-01-11 20:08:22 -0700 (Wed, 11 Jan 2006) | 2 lines

Fix the complex version of expm1


r1886 | oliphant | 2006-01-12 07:30:37 -0700 (Thu, 12 Jan 2006) | 1 line

Fix segfault in constructor when dtype not given.


r1887 | oliphant | 2006-01-12 14:23:07 -0700 (Thu, 12 Jan 2006) | 1 line

Make (type, 1) case equivalent to type


r1888 | sasha | 2006-01-12 14:56:07 -0700 (Thu, 12 Jan 2006) | 1 line

made 'masked' rank-0


r1889 | sasha | 2006-01-12 15:27:17 -0700 (Thu, 12 Jan 2006) | 1 line

introduced nomask = None constant


r1890 | oliphant | 2006-01-12 15:46:53 -0700 (Thu, 12 Jan 2006) | 1 line

Fix AIX portion of code


r1891 | oliphant | 2006-01-12 15:54:22 -0700 (Thu, 12 Jan 2006) | 1 line

Add generate_div_by_zero


r1892 | oliphant | 2006-01-12 19:29:56 -0700 (Thu, 12 Jan 2006) | 1 line

fix up the expm1 and log1p additions.


r1893 | oliphant | 2006-01-12 19:33:34 -0700 (Thu, 12 Jan 2006) | 1 line

fix up the expm1 and log1p additions.


r1894 | sasha | 2006-01-12 20:37:27 -0700 (Thu, 12 Jan 2006) | 1 line

fixed core dump for invalid array


r1895 | oliphant | 2006-01-13 20:16:53 -0700 (Fri, 13 Jan 2006) | 1 line

Remove expm1 and log1p from C99 defs.


r1896 | sasha | 2006-01-13 21:05:24 -0700 (Fri, 13 Jan 2006) | 1 line

fixed printing of masked zero-rank arrays


r1897 | oliphant | 2006-01-13 21:14:57 -0700 (Fri, 13 Jan 2006) | 1 line

Finish the fix...


r1898 | sasha | 2006-01-13 21:35:19 -0700 (Fri, 13 Jan 2006) | 1 line

extended array_wrap see MaskedArray


r1899 | sasha | 2006-01-13 23:36:09 -0700 (Fri, 13 Jan 2006) | 1 line

use extended __array_wrap__ in ma


r1900 | sasha | 2006-01-14 00:21:32 -0700 (Sat, 14 Jan 2006) | 5 lines

fixed domains for arccosh and arctanh

TODO: replace literal constants with appropriate machine specific values in arctanh and tan domains


r1901 | pearu | 2006-01-14 02:16:45 -0700 (Sat, 14 Jan 2006) | 1 line

Making f2py and distutils scipy-style packages. Using pkgload to load numpy packages.


r1902 | pearu | 2006-01-14 02:18:45 -0700 (Sat, 14 Jan 2006) | 1 line

Making f2py and distutils scipy-style packages. Using pkgload to load numpy packages.


r1903 | pearu | 2006-01-14 02:19:14 -0700 (Sat, 14 Jan 2006) | 1 line

Added missing info.py files


r1904 | sasha | 2006-01-14 19:46:52 -0700 (Sat, 14 Jan 2006) | 1 line

fixed handling of array_priority


r1905 | sasha | 2006-01-14 19:57:33 -0700 (Sat, 14 Jan 2006) | 1 line

handle odd scipy installations


r1906 | oliphant | 2006-01-14 20:10:36 -0700 (Sat, 14 Jan 2006) | 1 line

Moved .dtypedescr to .dtype; .dtype->.dtype.type; .dtypestr ->.dtype.str; .dtypechar -> .dtype.char


r1907 | oliphant | 2006-01-14 20:28:40 -0700 (Sat, 14 Jan 2006) | 1 line

Fix bad use of .dtype


r1908 | sasha | 2006-01-14 22:01:21 -0700 (Sat, 14 Jan 2006) | 5 lines

Do not check __array_priority__ if only one instance with __array_wrap__ is in the argument list.

Added more tests for __array_wrap__ selection.


r1909 | oliphant | 2006-01-14 22:52:41 -0700 (Sat, 14 Jan 2006) | 1 line

Speed up matrix-vector calculations using matrix class.


r1910 | oliphant | 2006-01-14 23:00:16 -0700 (Sat, 14 Jan 2006) | 1 line

Minor renaming.


r1911 | oliphant | 2006-01-14 23:16:19 -0700 (Sat, 14 Jan 2006) | 1 line

Fix unnecessary priority checks in multiarray and use C-API call in ufuncobject


r1912 | oliphant | 2006-01-15 01:09:50 -0700 (Sun, 15 Jan 2006) | 1 line

Made dtypedescr name attribute always report bit-width; fixed memmap slicing; Improved documentation of convertfile and convertall in convertcode.py


r1913 | oliphant | 2006-01-15 03:25:13 -0700 (Sun, 15 Jan 2006) | 1 line

Remove the automatic squeezing from _dotblas so that it is compatible with Numeric and non BLAS optimized matrixmultiply.


r1914 | sasha | 2006-01-15 15:47:52 -0700 (Sun, 15 Jan 2006) | 1 line

do not mask errors in __array_wrap__


r1915 | cookedm | 2006-01-16 03:44:38 -0700 (Mon, 16 Jan 2006) | 3 lines

Move handling of array priorities in dot-related functions to a separate function. Also fixes 'unused variable' warnings which were bugs.


r1916 | oliphant | 2006-01-16 14:32:58 -0700 (Mon, 16 Jan 2006) | 1 line

Fix shape() function. Fix so that longdouble typecode never overwrites double if longdouble is the same as double. Fix missing math module import.


r1917 | oliphant | 2006-01-16 14:57:01 -0700 (Mon, 16 Jan 2006) | 1 line

Fixed uninitialized memory in real_fft.


r1918 | cookedm | 2006-01-16 14:57:27 -0700 (Mon, 16 Jan 2006) | 2 lines

Add docstrings to index_tricks functions (r_, c_, ndenumerate, index_exp)


r1919 | oliphant | 2006-01-16 15:10:42 -0700 (Mon, 16 Jan 2006) | 1 line

Fix equality comparison for object arrays.


r1920 | oliphant | 2006-01-16 15:29:15 -0700 (Mon, 16 Jan 2006) | 1 line

Load numpy.linalg on import


r1921 | oliphant | 2006-01-16 17:07:21 -0700 (Mon, 16 Jan 2006) | 1 line

Fixed up usage of dtype to be consistent with new dtype objects.


r1922 | oliphant | 2006-01-16 19:59:51 -0700 (Mon, 16 Jan 2006) | 1 line

Add Paulo's improvements to _dotblas.c and don't always require contiguous.


r1923 | oliphant | 2006-01-17 05:01:48 -0700 (Tue, 17 Jan 2006) | 1 line

Fixed dotblas for zero-size arrays.


r1924 | sasha | 2006-01-17 10:59:23 -0700 (Tue, 17 Jan 2006) | 1 line

fixed filled(masked)


r1925 | sasha | 2006-01-17 14:48:14 -0700 (Tue, 17 Jan 2006) | 1 line

use nomask instead of None


r1926 | oliphant | 2006-01-17 15:23:57 -0700 (Tue, 17 Jan 2006) | 1 line

Reset MAX_DIMS to 32 and add tests for dot.


r1927 | cookedm | 2006-01-18 01:42:27 -0700 (Wed, 18 Jan 2006) | 2 lines

Use pickle.loads/dumps for test_ma to avoid littering the filesystem with test9.pik files.


r1928 | oliphant | 2006-01-18 11:12:38 -0700 (Wed, 18 Jan 2006) | 1 line

Fixed up inappropriate copy...


r1929 | sasha | 2006-01-18 11:55:07 -0700 (Wed, 18 Jan 2006) | 1 line

added passing optional context to the array method


r1930 | oliphant | 2006-01-18 11:57:53 -0700 (Wed, 18 Jan 2006) | 1 line

Fixed char.array function


r1931 | sasha | 2006-01-18 12:05:28 -0700 (Wed, 18 Jan 2006) | 1 line

intern bool_arrtype values


r1932 | sasha | 2006-01-18 15:05:11 -0700 (Wed, 18 Jan 2006) | 1 line

static allocation of boolean values


r1933 | cookedm | 2006-01-18 15:05:45 -0700 (Wed, 18 Jan 2006) | 2 lines

Revert passing -m32 to g77


r1934 | oliphant | 2006-01-18 15:37:36 -0700 (Wed, 18 Jan 2006) | 1 line

Fix problems with non-square matrices in _dotblas.c


r1935 | oliphant | 2006-01-18 15:50:03 -0700 (Wed, 18 Jan 2006) | 1 line

Add optimization in iterator for 1d.


r1936 | oliphant | 2006-01-18 15:51:55 -0700 (Wed, 18 Jan 2006) | 1 line

Re-order optimization in iterator for 1d.


r1937 | oliphant | 2006-01-18 15:54:24 -0700 (Wed, 18 Jan 2006) | 1 line

More optimization in iterator for 1d.


r1938 | sasha | 2006-01-18 16:25:31 -0700 (Wed, 18 Jan 2006) | 1 line

more tests for __array__ calls


r1939 | oliphant | 2006-01-18 18:10:26 -0700 (Wed, 18 Jan 2006) | 1 line

Fixed up PyArray_FromAny and friends for API --- recompile extensions...


r1940 | oliphant | 2006-01-18 18:28:20 -0700 (Wed, 18 Jan 2006) | 1 line

Cleaned up some uses of CheckFromAny


r1941 | oliphant | 2006-01-18 19:44:55 -0700 (Wed, 18 Jan 2006) | 1 line

Use a register_func system for altering functions in numpy.dual


r1942 | oliphant | 2006-01-18 20:01:27 -0700 (Wed, 18 Jan 2006) | 1 line

Add restore functions to numpy.dual


r1943 | oliphant | 2006-01-18 22:03:46 -0700 (Wed, 18 Jan 2006) | 1 line

Added NDARRAY_VERSION check on import_array


r1944 | pearu | 2006-01-19 01:49:39 -0700 (Thu, 19 Jan 2006) | 1 line

Using /etc/ld.so.conf and LD_LIBRARY_PATH to detect MKLROOT. When MKLROOT is not detected, using MKL is disabled.


r1945 | oliphant | 2006-01-19 13:49:00 -0700 (Thu, 19 Jan 2006) | 1 line

Speed ups to indexing..


r1946 | sasha | 2006-01-19 13:54:34 -0700 (Thu, 19 Jan 2006) | 1 line

faster 'nonzero', &, | and ^ for bool_


r1947 | oliphant | 2006-01-19 14:27:58 -0700 (Thu, 19 Jan 2006) | 1 line

More optimizations to indexing...


r1948 | oliphant | 2006-01-19 14:43:19 -0700 (Thu, 19 Jan 2006) | 1 line

Fix bad strides in complex scalar-matrix multiply.


r1949 | oliphant | 2006-01-19 15:06:01 -0700 (Thu, 19 Jan 2006) | 1 line

Fix reference counting problems..


r1950 | rkern | 2006-01-19 15:21:20 -0700 (Thu, 19 Jan 2006) | 1 line

numpy no longer needs to be a namespace package.


r1951 | sasha | 2006-01-19 17:19:09 -0700 (Thu, 19 Jan 2006) | 1 line

Defined False_ and True_


r1952 | sasha | 2006-01-19 17:21:47 -0700 (Thu, 19 Jan 2006) | 1 line

Made ma immune to a bug in choose


r1953 | oliphant | 2006-01-19 17:57:59 -0700 (Thu, 19 Jan 2006) | 1 line

Fix inappropriate DECREF.


r1954 | sasha | 2006-01-19 19:59:30 -0700 (Thu, 19 Jan 2006) | 1 line

changed nomask from None to False_


r1955 | sasha | 2006-01-19 20:13:03 -0700 (Thu, 19 Jan 2006) | 1 line

take advantage of nomask=False_


r1956 | oliphant | 2006-01-19 20:31:30 -0700 (Thu, 19 Jan 2006) | 1 line

Fix so that arrays never become scalars using .copy() command


r1957 | oliphant | 2006-01-20 01:47:02 -0700 (Fri, 20 Jan 2006) | 1 line

Fixed error in no-axis methods for matrices.


r1958 | oliphant | 2006-01-20 03:20:33 -0700 (Fri, 20 Jan 2006) | 1 line

Change order of descriptor functions to match required vs. non-required.


r1959 | oliphant | 2006-01-20 03:43:42 -0700 (Fri, 20 Jan 2006) | 1 line

Remove unnecessary check.


r1960 | oliphant | 2006-01-20 14:59:32 -0700 (Fri, 20 Jan 2006) | 1 line

Change License text to NumPy License (permission granted by Pearu)


r1961 | oliphant | 2006-01-20 15:23:18 -0700 (Fri, 20 Jan 2006) | 1 line

Fix segfault when using subdescr.


r1962 | oliphant | 2006-01-20 15:28:02 -0700 (Fri, 20 Jan 2006) | 1 line

Fix str representation for rank-0 arrays


r1963 | oliphant | 2006-01-20 16:05:07 -0700 (Fri, 20 Jan 2006) | 1 line

Fix so that None converts to Nan in array conversion.


r1964 | oliphant | 2006-01-20 16:15:58 -0700 (Fri, 20 Jan 2006) | 1 line

Fix conversions to NaN for other floating types


r1965 | oliphant | 2006-01-20 16:25:44 -0700 (Fri, 20 Jan 2006) | 1 line

A few safety checks for platforms where SIZEOF_LONG < SIZEOF_INTP -- windows 64-bit I think


r1966 | oliphant | 2006-01-20 16:50:38 -0700 (Fri, 20 Jan 2006) | 1 line

Add a BSD-type LICENSE.txt file


r1967 | oliphant | 2006-01-20 17:44:05 -0700 (Fri, 20 Jan 2006) | 1 line

Fix arange to accept None and treat it as if it hadn't been passed in.


r1968 | oliphant | 2006-01-21 04:28:34 -0700 (Sat, 21 Jan 2006) | 1 line

Added ability to read ascii strings in fromstring.


r1969 | oliphant | 2006-01-21 04:29:10 -0700 (Sat, 21 Jan 2006) | 1 line

Update C-API version.


r1970 | oliphant | 2006-01-21 12:18:18 -0700 (Sat, 21 Jan 2006) | 1 line

Fix a few more improper uses of .dtype attribute.


r1971 | oliphant | 2006-01-21 12:39:54 -0700 (Sat, 21 Jan 2006) | 1 line

Fix uninitialized variable.


r1972 | oliphant | 2006-01-21 13:15:14 -0700 (Sat, 21 Jan 2006) | 1 line

Added tests for fromstring.


r1973 | oliphant | 2006-01-21 22:35:21 -0700 (Sat, 21 Jan 2006) | 1 line

Added LICENSE.txt to distribution. Fixed f2py check_and_fix_dimensions to not reverse dimensions.


r1974 | oliphant | 2006-01-21 22:38:18 -0700 (Sat, 21 Jan 2006) | 1 line

Comment change in fortranobject.c better.


SciPy: ReleaseNotes/NumPy_0.9.4 (last edited 2015-10-24 17:48:23 by anonymous)