@@ -19,16 +19,28 @@ class hybrid_property(interfaces.InspectionAttrInfo):
19
19
fget : Any = ...
20
20
fset : Any = ...
21
21
fdel : Any = ...
22
+ custom_comparator : Any = ...
23
+ update_expr : Any = ...
22
24
def __init__ (self , fget , fset : Optional [Any ] = ..., fdel : Optional [Any ] = ...,
23
- expr : Optional [Any ] = ...) -> None : ...
25
+ expr : Optional [Any ] = ..., custom_comparator : Optional [Any ] = ...,
26
+ update_expr : Optional [Any ] = ...) -> None : ...
24
27
def __get__ (self , instance , owner ): ...
25
28
def __set__ (self , instance , value ): ...
26
29
def __delete__ (self , instance ): ...
30
+ def getter (self , fget ): ...
27
31
def setter (self , fset ): ...
28
32
def deleter (self , fdel ): ...
29
33
expr : Any = ...
30
34
def expression (self , expr ): ...
31
35
def comparator (self , comparator ): ...
36
+ def update_expression (self , meth ): ...
37
+ def _copy (self , ** kw ): ...
38
+ def _expr_comparator (self ): ...
39
+ def _get_expr (self , expr ): ...
40
+ def _get_comparator (self , comparator ): ...
41
+ @property
42
+ def overrides (self ): ...
43
+
32
44
33
45
class Comparator (interfaces .PropComparator ):
34
46
property : Any = ...
0 commit comments