File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -511,9 +511,9 @@ def group_shift_indexer(
511
511
@ cython.wraparound (False )
512
512
@ cython.boundscheck (False )
513
513
def group_fillna_indexer (
514
- ndarray[ intp_t] out ,
515
- ndarray[ intp_t] labels ,
516
- ndarray[ uint8_t] mask ,
514
+ intp_t[::1 ] out ,
515
+ const intp_t[::1 ] labels ,
516
+ const uint8_t[: ] mask ,
517
517
int64_t limit ,
518
518
bint compute_ffill ,
519
519
int ngroups ,
@@ -1179,13 +1179,13 @@ def group_ohlc(
1179
1179
@ cython.boundscheck (False )
1180
1180
@ cython.wraparound (False )
1181
1181
def group_quantile (
1182
- ndarray[ float64_t , ndim = 2 ] out,
1182
+ float64_t[:, ::1 ] out ,
1183
1183
ndarray[numeric_t , ndim = 1 ] values,
1184
- ndarray[ intp_t] labels ,
1184
+ const intp_t[::1 ] labels ,
1185
1185
const uint8_t[:] mask ,
1186
1186
const float64_t[:] qs ,
1187
- ndarray[ int64_t] starts ,
1188
- ndarray[ int64_t] ends ,
1187
+ const int64_t[::1 ] starts ,
1188
+ const int64_t[::1 ] ends ,
1189
1189
str interpolation ,
1190
1190
uint8_t[:, ::1] result_mask ,
1191
1191
bint is_datetimelike ,
You can’t perform that action at this time.
0 commit comments