diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2006-08-28 05:56:49 +0000 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2006-08-28 05:56:49 +0000 |
commit | 59286e9133cfc1d71b92313e0b0443e31f03e8ce (patch) | |
tree | 1a894b2a3c29883ffc90e7b433fba043e73a1c84 /numpy/core/src/arraymethods.c | |
parent | 4dcd244210909cc81b15cc43484f13fed79bcb62 (diff) | |
download | numpy-59286e9133cfc1d71b92313e0b0443e31f03e8ce.tar.gz |
Break up the documentation of ndarray attributes into separate calls.
Diffstat (limited to 'numpy/core/src/arraymethods.c')
-rw-r--r-- | numpy/core/src/arraymethods.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/src/arraymethods.c b/numpy/core/src/arraymethods.c index d2d2b9b47..4de5c811f 100644 --- a/numpy/core/src/arraymethods.c +++ b/numpy/core/src/arraymethods.c @@ -229,8 +229,8 @@ array_swapaxes(PyArrayObject *self, PyObject *args) } static char doc_getfield[] = "m.getfield(dtype, offset) returns a field "\ - " of the given array as a certain type. A field is a view of "\ - " the array's data with each itemsize determined by the given type"\ + " of the given array as a certain type. \nA field is a view of "\ + " the array's data with each itemsize determined by the\ngiven type"\ " and the offset into the current array."; /* steals typed reference */ |