@@ -7,18 +7,20 @@ API: AdvancedProperty
77 .. py :currentmodule :: advanced_descriptors
88
99
10- .. py :class :: AdvancedProperty(fget = None , fset = None , fdel = None , fcget = None , )
10+ .. py :class :: AdvancedProperty(object )
1111
1212 Advanced property main entry point.
1313
14- :param fget: normal getter.
15- :type fget: ``typing.Optional[typing.Callable[[typing.Any, ], typing.Any]] ``
16- :param fset: normal setter.
17- :type fset: ``typing.Optional[typing.Callable[[typing.Any, typing.Any], None]] ``
18- :param fdel: normal deleter.
19- :type fdel: ``typing.Optional[typing.Callable[[typing.Any, ], None]] ``
20- :param fcget: class getter. Used as normal, if normal is None.
21- :type fcget: ``typing.Optional[typing.Callable[[typing.Any, ], typing.Any]] ``
14+ .. py :method :: __init__ (fget = None , fset = None , fdel = None , fcget = None , )
15+
16+ :param fget: normal getter.
17+ :type fget: ``typing.Optional[typing.Callable[[typing.Any, ], typing.Any]] ``
18+ :param fset: normal setter.
19+ :type fset: ``typing.Optional[typing.Callable[[typing.Any, typing.Any], None]] ``
20+ :param fdel: normal deleter.
21+ :type fdel: ``typing.Optional[typing.Callable[[typing.Any, ], None]] ``
22+ :param fcget: class getter. Used as normal, if normal is None.
23+ :type fcget: ``typing.Optional[typing.Callable[[typing.Any, ], typing.Any]] ``
2224
2325 .. note :: doc argument is not supported due to class wide getter usage.
2426
0 commit comments