@@ -156,22 +156,22 @@ class Categorical(ExtensionArray, PandasObject):
156156 def dropna (self ): ...
157157 def value_counts (self , dropna : bool = ...): ...
158158 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 ): ...
160160 def sort_values (
161- self , inplace : bool = ..., ascending : bool = ..., na_position : str = ...
161+ self , * , inplace : bool = ..., ascending : bool = ..., na_position : str = ...
162162 ): ...
163163 def view (self , dtype = ...): ...
164164 def to_dense (self ): ...
165165 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 = ...): ...
167167 def take_nd (self , indexer , allow_fill : bool = ..., fill_value = ...): ...
168168 def __len__ (self ) -> int : ...
169169 def __iter__ (self ): ...
170170 def __contains__ (self , key ) -> bool : ...
171171 def __getitem__ (self , key ): ...
172172 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 = ...): ...
175175 def mode (self , dropna : bool = ...): ...
176176 def unique (self ): ...
177177 def equals (self , other ): ...
0 commit comments