diff options
author | Pauli Virtanen <pav@iki.fi> | 2010-04-04 15:34:49 +0000 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2010-04-04 15:34:49 +0000 |
commit | 64e70811b58ade22a4a2c4be24b41dec23303942 (patch) | |
tree | cdf6d97cdd54849ab25e3d708022021ead68357a /numpy/numarray/_capi.c | |
parent | af2b0578c642cb269478dc3b048e59d0d79e0820 (diff) | |
download | numpy-64e70811b58ade22a4a2c4be24b41dec23303942.tar.gz |
ENH: get rid of #warning directives, either by fixing the issue or changing them to comments
Diffstat (limited to 'numpy/numarray/_capi.c')
-rw-r--r-- | numpy/numarray/_capi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/numarray/_capi.c b/numpy/numarray/_capi.c index a861feec9..875e383ea 100644 --- a/numpy/numarray/_capi.c +++ b/numpy/numarray/_capi.c @@ -90,7 +90,7 @@ static int getWriteBufferDataPtr(PyObject *buffobj, void **buff) { #if defined(NPY_PY3K) -#warning XXX - needs implementation + /* FIXME: XXX - needs implementation */ PyErr_SetString(PyExc_RuntimeError, "XXX: getWriteBufferDataPtr is not implemented"); return -1; @@ -127,7 +127,7 @@ static int getReadBufferDataPtr(PyObject *buffobj, void **buff) { #if defined(NPY_PY3K) -#warning XXX - needs implementation + /* FIXME: XXX - needs implementation */ PyErr_SetString(PyExc_RuntimeError, "XXX: getWriteBufferDataPtr is not implemented"); return -1; @@ -150,7 +150,7 @@ static int getBufferSize(PyObject *buffobj) { #if defined(NPY_PY3K) -#warning XXX - needs implementation + /* FIXME: XXX - needs implementation */ PyErr_SetString(PyExc_RuntimeError, "XXX: getWriteBufferDataPtr is not implemented"); return -1; |