summaryrefslogtreecommitdiff
path: root/numpy/doc/swig
diff options
context:
space:
mode:
authorwfspotz@sandia.gov <wfspotz@sandia.gov@localhost>2007-04-13 17:04:02 +0000
committerwfspotz@sandia.gov <wfspotz@sandia.gov@localhost>2007-04-13 17:04:02 +0000
commitcfb606b1a0849895c12e2ecf99deca3d04a2a2f3 (patch)
treed93233466e5ce8ca6dc7b141c84d44e74d2e6bf6 /numpy/doc/swig
parente574efa3a59cc6875daca0482116a87cacf581af (diff)
downloadnumpy-cfb606b1a0849895c12e2ecf99deca3d04a2a2f3.tar.gz
Fixed typo in documentation
Diffstat (limited to 'numpy/doc/swig')
-rw-r--r--numpy/doc/swig/numpy.i4
-rw-r--r--numpy/doc/swig/numpy_swig.html4
-rw-r--r--numpy/doc/swig/numpy_swig.pdfbin138412 -> 138385 bytes
-rw-r--r--numpy/doc/swig/numpy_swig.txt2
4 files changed, 5 insertions, 5 deletions
diff --git a/numpy/doc/swig/numpy.i b/numpy/doc/swig/numpy.i
index e63ba3c21..69c947af3 100644
--- a/numpy/doc/swig/numpy.i
+++ b/numpy/doc/swig/numpy.i
@@ -965,9 +965,9 @@ int require_size(PyArrayObject* ary, npy_intp* size, int n) {
* Swig complains about a syntax error for the following macros
* expansions:
*/
-/*%numpy_typemaps(complex float, NPY_CFLOAT )
+/*%numpy_typemaps(complex float, NPY_CFLOAT , int)
*/
-/*%numpy_typemaps(complex double, NPY_CDOUBLE )
+/*%numpy_typemaps(complex double, NPY_CDOUBLE, int)
*/
/*%numpy_typemaps(complex long double, NPY_CLONGDOUBLE)
*/
diff --git a/numpy/doc/swig/numpy_swig.html b/numpy/doc/swig/numpy_swig.html
index a335901c0..5348c5fbf 100644
--- a/numpy/doc/swig/numpy_swig.html
+++ b/numpy/doc/swig/numpy_swig.html
@@ -688,7 +688,7 @@ typedef struct {double real, imag;} npy_cdouble;
</pre>
<p>We could have implemented:</p>
<pre class="literal-block">
-%numpy_typemaps(Py_complex , NPY_DOUBLE , int)
+%numpy_typemaps(Py_complex , NPY_CDOUBLE, int)
%numpy_typemaps(npy_cfloat , NPY_CFLOAT , int)
%numpy_typemaps(npy_cdouble, NPY_CDOUBLE, int)
</pre>
@@ -948,7 +948,7 @@ possible.</p>
</div>
<div class="footer">
<hr class="footer" />
-Generated on: 2007-04-10 15:20 UTC.
+Generated on: 2007-04-13 17:02 UTC.
Generated by <a class="reference" href="http://docutils.sourceforge.net/">Docutils</a> from <a class="reference" href="http://docutils.sourceforge.net/rst.html">reStructuredText</a> source.
</div>
diff --git a/numpy/doc/swig/numpy_swig.pdf b/numpy/doc/swig/numpy_swig.pdf
index 832c3fd06..7400f93df 100644
--- a/numpy/doc/swig/numpy_swig.pdf
+++ b/numpy/doc/swig/numpy_swig.pdf
Binary files differ
diff --git a/numpy/doc/swig/numpy_swig.txt b/numpy/doc/swig/numpy_swig.txt
index 6e4d06f41..fbd8c2dfa 100644
--- a/numpy/doc/swig/numpy_swig.txt
+++ b/numpy/doc/swig/numpy_swig.txt
@@ -374,7 +374,7 @@ written in C, which does not have native complex types. Both
We could have implemented::
- %numpy_typemaps(Py_complex , NPY_DOUBLE , int)
+ %numpy_typemaps(Py_complex , NPY_CDOUBLE, int)
%numpy_typemaps(npy_cfloat , NPY_CFLOAT , int)
%numpy_typemaps(npy_cdouble, NPY_CDOUBLE, int)