We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f355c90 commit 74b478dCopy full SHA for 74b478d
src/_arraykit.c
@@ -3589,7 +3589,6 @@ typedef struct A2DTupleObject {
3589
npy_intp num_rows;
3590
npy_intp num_cols;
3591
Py_ssize_t pos; // current index state, mutated in-place
3592
-
3593
} A2DTupleObject;
3594
3595
static PyObject *
@@ -3616,7 +3615,6 @@ A2DTuple_dealloc(A2DTupleObject *self) {
3616
3615
3617
static PyObject*
3618
A2DTuple_iter(A2DTupleObject *self) {
3619
- // NOTE: why do we not need to incref components sof self?
3620
Py_INCREF(self);
3621
return (PyObject*)self;
3622
}
0 commit comments