Code cleanup: style
This commit is contained in:
@@ -420,7 +420,7 @@ static PyObject *Buffer_slice(Buffer *self, int begin, int end)
|
||||
if (begin < 0) begin = 0;
|
||||
if (end > self->dimensions[0]) end = self->dimensions[0];
|
||||
if (begin > end) begin = end;
|
||||
|
||||
|
||||
list = PyList_New(end - begin);
|
||||
|
||||
for (count = begin; count < end; count++) {
|
||||
|
Reference in New Issue
Block a user