diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-11-13 03:10:24 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-11-13 03:10:24 +0000 |
commit | 5a215e75e2ee5100c1e6076123b10f135f62b14c (patch) | |
tree | 0a98ddf48dd5b26ba6b96e3683caef7a5d66d62e /scipy/base/src | |
parent | a218a559bfd81e2bcd18cc10da28030251398e43 (diff) | |
download | numpy-5a215e75e2ee5100c1e6076123b10f135f62b14c.tar.gz |
Modify README.txt
Diffstat (limited to 'scipy/base/src')
-rw-r--r-- | scipy/base/src/arraymethods.c | 1 | ||||
-rw-r--r-- | scipy/base/src/arrayobject.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/scipy/base/src/arraymethods.c b/scipy/base/src/arraymethods.c index da9cf9b24..14060f5ac 100644 --- a/scipy/base/src/arraymethods.c +++ b/scipy/base/src/arraymethods.c @@ -1,4 +1,5 @@ +/* Should only be used if x is known to be an nd-array */ #define _ARET(x) PyArray_Return((PyArrayObject *)(x)) static char doc_take[] = "a.take(indices, axis=None). Selects the elements "\ diff --git a/scipy/base/src/arrayobject.c b/scipy/base/src/arrayobject.c index 43d7d2125..cd90464fb 100644 --- a/scipy/base/src/arrayobject.c +++ b/scipy/base/src/arrayobject.c @@ -1,4 +1,4 @@ - /* +/* Provide multidimensional arrays as a basic object type in python. Based on Original Numeric implementation |