File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,14 @@ class BlockIndex:
31
31
rows : int
32
32
columns : int
33
33
34
- def __init__ () -> None : ...
34
+ def __init__ (
35
+ block_count : int = 0 ,
36
+ row_count : int = - 1 ,
37
+ bir_count : int = 0 ,
38
+ bir_capacity : int = 8 ,
39
+ bir_bytes : bytes = b'' ,
40
+ dtype : np .dtype = None ,
41
+ ) -> None : ...
35
42
def register (self , __value : np .ndarray ) -> bool : ...
36
43
def to_list (self ,) -> tp .List [int ]: ...
37
44
def to_bytes (self ,) -> bytes : ...
@@ -48,9 +55,10 @@ class BlockIndex:
48
55
) -> tp .Iterator [tp .Tuple [int , int ]]: ...
49
56
def iter_contiguous (self ,
50
57
__key : tp .Union [slice , np .ndarray , tp .List [int ]],
58
+ * ,
51
59
ascending : bool = False ,
52
60
reduce : bool = False ,
53
- ) -> tp .Iterator [tp .Tuple [int , int ]]: ...
61
+ ) -> tp .Iterator [tp .Tuple [int , tp . Union [ slice , int ] ]]: ...
54
62
55
63
56
64
def iterable_str_to_array_1d (
You can’t perform that action at this time.
0 commit comments