From: Stefan Behnel Date: Sun, 14 Apr 2013 16:42:32 +0000 (+0200) Subject: clean up utility code a bit X-Git-Tag: 0.19rc1~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7714476ab74b18636c0b2391c1a6e3384fcfe374;p=platform%2Fupstream%2Fpython-cython.git clean up utility code a bit --- diff --git a/Cython/Utility/MemoryView_C.c b/Cython/Utility/MemoryView_C.c index 422b1a9..376c5aa 100644 --- a/Cython/Utility/MemoryView_C.c +++ b/Cython/Utility/MemoryView_C.c @@ -221,8 +221,8 @@ static int __pyx_check_suboffsets(Py_buffer *buf, int dim, int ndim, int spec) { - /* Todo: without PyBUF_INDIRECT we may not have suboffset information, i.e., the - ptr may not be set to NULL but may be uninitialized? */ + // Todo: without PyBUF_INDIRECT we may not have suboffset information, i.e., the + // ptr may not be set to NULL but may be uninitialized? if (spec & __Pyx_MEMVIEW_DIRECT) { if (buf->suboffsets && buf->suboffsets[dim] >= 0) { PyErr_Format(PyExc_ValueError,