diff options
author | Pauli Virtanen <pav@iki.fi> | 2008-06-08 12:18:37 +0000 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2008-06-08 12:18:37 +0000 |
commit | cf89a25cebb537448707ab389f32f07dd52cf911 (patch) | |
tree | 89aa975e4b0052ab5b24d192ceeb1ee21d9761c3 /numpy/core/src/ufuncobject.c | |
parent | 8fac05d6e37b6d57a08092a32c8a81768a430441 (diff) | |
download | numpy-cf89a25cebb537448707ab389f32f07dd52cf911.tar.gz |
Move umath docstrings to a separate file. Make the automatic ufunc signature compatible with the documentation standard.
Diffstat (limited to 'numpy/core/src/ufuncobject.c')
-rw-r--r-- | numpy/core/src/ufuncobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/ufuncobject.c b/numpy/core/src/ufuncobject.c index b07e693f2..d07f78305 100644 --- a/numpy/core/src/ufuncobject.c +++ b/numpy/core/src/ufuncobject.c @@ -4007,7 +4007,7 @@ ufunc_get_doc(PyUFuncObject *self) PyObject *outargs, *inargs, *doc; outargs = _makeargs(self->nout, "y"); inargs = _makeargs(self->nin, "x"); - doc = PyString_FromFormat("%s = %s(%s) %s", + doc = PyString_FromFormat("%s = %s(%s)\n\n%s", PyString_AS_STRING(outargs), self->name, PyString_AS_STRING(inargs), |