We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d608b5b commit 86db870Copy full SHA for 86db870
pandas/_libs/reduction.pyx
@@ -105,8 +105,7 @@ cdef class SeriesBinGrouper(_BaseGrouper):
105
106
cdef public:
107
ndarray arr, index, dummy_arr, dummy_index
108
- object values, f, bins, typ, ityp, name
109
- object idtype
+ object values, f, bins, typ, ityp, name, idtype
110
111
def __init__(self, object series, object f, object bins):
112
@@ -200,8 +199,7 @@ cdef class SeriesGrouper(_BaseGrouper):
200
199
201
202
203
- object f, labels, values, typ, ityp, name
204
+ object f, labels, values, typ, ityp, name, idtype
205
206
def __init__(self, object series, object f, ndarray[intp_t] labels,
207
Py_ssize_t ngroups):
@@ -262,7 +260,6 @@ cdef class SeriesGrouper(_BaseGrouper):
262
260
start += group_size
263
261
group_size = 0
264
continue
265
- print(f"Group size: {group_size}")
266
267
end = start + group_size
268
islider.move(start, end)
0 commit comments