1
1
#!/usr/bin/env python
2
2
3
- # Copyright 2016 - 2021 Alexey Stepanov aka penguinolog
3
+ # Copyright 2016 - 2022 Alexey Stepanov aka penguinolog
4
4
# Licensed under the Apache License, Version 2.0 (the "License"); you may
5
5
# not use this file except in compliance with the License. You may obtain
6
6
# a copy of the License at
20
20
# Standard Library
21
21
import typing
22
22
23
+ if typing .TYPE_CHECKING :
24
+ # Standard Library
25
+ from collections .abc import Callable
26
+
23
27
__all__ = ("AdvancedProperty" ,)
24
28
25
29
_OwnerClassT = typing .TypeVar ("_OwnerClassT" )
@@ -121,27 +125,27 @@ class AdvancedProperty(property, typing.Generic[_OwnerClassT, _ReturnT, _ClassRe
121
125
122
126
def __init__ (
123
127
self ,
124
- fget : typing . Callable [[_OwnerClassT ], _ReturnT ] | None = None ,
125
- fset : typing . Callable [[_OwnerClassT , _ReturnT ], None ] | None = None ,
126
- fdel : typing . Callable [[_OwnerClassT ], None ] | None = None ,
127
- fcget : typing . Callable [[type [_OwnerClassT ]], _ClassReturnT ] | None = None ,
128
+ fget : Callable [[_OwnerClassT ], _ReturnT ] | None = None ,
129
+ fset : Callable [[_OwnerClassT , _ReturnT ], None ] | None = None ,
130
+ fdel : Callable [[_OwnerClassT ], None ] | None = None ,
131
+ fcget : Callable [[type [_OwnerClassT ]], _ClassReturnT ] | None = None ,
128
132
) -> None :
129
133
"""Advanced property main entry point.
130
134
131
135
:param fget: normal getter.
132
- :type fget: typing. Callable[[typing.Any, ], typing.Any] | None
136
+ :type fget: Callable[[typing.Any, ], typing.Any] | None
133
137
:param fset: normal setter.
134
- :type fset: typing. Callable[[typing.Any, typing.Any], None] | None
138
+ :type fset: Callable[[typing.Any, typing.Any], None] | None
135
139
:param fdel: normal deleter.
136
- :type fdel: typing. Callable[[typing.Any, ], None] | None
140
+ :type fdel: Callable[[typing.Any, ], None] | None
137
141
:param fcget: class getter. Used as normal, if normal is None.
138
- :type fcget: typing. Callable[[typing.Any, ], typing.Any] | None
142
+ :type fcget: Callable[[typing.Any, ], typing.Any] | None
139
143
140
144
.. note:: doc argument is not supported due to class wide getter usage.
141
145
"""
142
146
super ().__init__ (fget = fget , fset = fset , fdel = fdel )
143
147
144
- self .__fcget : typing . Callable [[type [_OwnerClassT ]], _ClassReturnT ] | None = fcget
148
+ self .__fcget : Callable [[type [_OwnerClassT ]], _ClassReturnT ] | None = fcget
145
149
146
150
@typing .overload
147
151
def __get__ (self , instance : None , owner : type [_OwnerClassT ]) -> _ClassReturnT :
@@ -159,7 +163,7 @@ def __get__(
159
163
"""Get descriptor.
160
164
161
165
:param instance: Owner class instance. Filled only if instance created, else None.
162
- :type instance: typing.Optional[ owner]
166
+ :type instance: owner | None
163
167
:param owner: Owner class for property.
164
168
:return: getter call result if getter presents
165
169
:rtype: typing.Any
@@ -172,22 +176,22 @@ def __get__(
172
176
return super ().__get__ (instance , owner ) # type: ignore[no-any-return]
173
177
174
178
@property
175
- def fcget (self ) -> typing . Callable [[type [_OwnerClassT ]], _ClassReturnT ] | None :
179
+ def fcget (self ) -> Callable [[type [_OwnerClassT ]], _ClassReturnT ] | None :
176
180
"""Class wide getter instance.
177
181
178
182
:return: Class wide getter instance
179
- :rtype: typing. Callable[[typing.Any, ], typing.Any] | None
183
+ :rtype: Callable[[typing.Any, ], typing.Any] | None
180
184
"""
181
185
return self .__fcget
182
186
183
187
def cgetter (
184
188
self ,
185
- fcget : typing . Callable [[type [_OwnerClassT ]], _ClassReturnT ] | None ,
189
+ fcget : Callable [[type [_OwnerClassT ]], _ClassReturnT ] | None ,
186
190
) -> AdvancedProperty [_OwnerClassT , _ReturnT , _ClassReturnT ]:
187
191
"""Descriptor to change the class wide getter on a property.
188
192
189
193
:param fcget: new class-wide getter.
190
- :type fcget: typing. Callable[[typing.Any, ], typing.Any] | None
194
+ :type fcget: Callable[[typing.Any, ], typing.Any] | None
191
195
:return: AdvancedProperty
192
196
:rtype: AdvancedProperty
193
197
"""
0 commit comments