@@ -156,22 +156,22 @@ class Categorical(ExtensionArray, PandasObject):
156
156
def dropna (self ): ...
157
157
def value_counts (self , dropna : bool = ...): ...
158
158
def check_for_ordered (self , op ) -> None : ...
159
- def argsort (self , ascending : bool = ..., kind : str = ..., * args , ** kwargs ): ...
159
+ def argsort (self , * , ascending : bool = ..., kind : str = ..., ** kwargs ): ...
160
160
def sort_values (
161
- self , inplace : bool = ..., ascending : bool = ..., na_position : str = ...
161
+ self , * , inplace : bool = ..., ascending : bool = ..., na_position : str = ...
162
162
): ...
163
163
def view (self , dtype = ...): ...
164
164
def to_dense (self ): ...
165
165
def fillna (self , value = ..., method = ..., limit = ...): ...
166
- def take (self , indexer , allow_fill : bool = ..., fill_value = ...): ...
166
+ def take (self , indexer , * , allow_fill : bool = ..., fill_value = ...): ...
167
167
def take_nd (self , indexer , allow_fill : bool = ..., fill_value = ...): ...
168
168
def __len__ (self ) -> int : ...
169
169
def __iter__ (self ): ...
170
170
def __contains__ (self , key ) -> bool : ...
171
171
def __getitem__ (self , key ): ...
172
172
def __setitem__ (self , key , value ) -> None : ...
173
- def min (self , skipna : bool = ...): ...
174
- def max (self , skipna : bool = ...): ...
173
+ def min (self , * , skipna : bool = ...): ...
174
+ def max (self , * , skipna : bool = ...): ...
175
175
def mode (self , dropna : bool = ...): ...
176
176
def unique (self ): ...
177
177
def equals (self , other ): ...
0 commit comments