diff options
author | Mark Wiebe <mwwiebe@gmail.com> | 2011-08-26 12:59:27 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2011-08-27 07:27:02 -0600 |
commit | e4a1c55ea488cad7af3556c336be68f7d7ff02ff (patch) | |
tree | bac0fcaa3b50ae2c1d1538abdf17994ed97036fc /doc/source/reference/c-api.maskna.rst | |
parent | 0bfefe3910b8401e8d458bca8fb05e9725b9b711 (diff) | |
download | numpy-e4a1c55ea488cad7af3556c336be68f7d7ff02ff.tar.gz |
DOC: missingdata: Updates from pull request feedback
From Chris Jordan-Squire
Diffstat (limited to 'doc/source/reference/c-api.maskna.rst')
-rw-r--r-- | doc/source/reference/c-api.maskna.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/reference/c-api.maskna.rst b/doc/source/reference/c-api.maskna.rst index 7253ea2ac..374998141 100644 --- a/doc/source/reference/c-api.maskna.rst +++ b/doc/source/reference/c-api.maskna.rst @@ -154,7 +154,7 @@ To start, we define the function prototype and some basic :ctype:`NpyIter` boilerplate setup. We'll make a function which supports an optional *out* parameter, which may be NULL.:: - PyArrayObject* + static PyArrayObject* SpecialDivide(PyArrayObject* a, PyArrayObject* b, PyArrayObject *out) { NpyIter *iter = NULL; |