kopia lustrzana https://github.com/micropython/micropython-lib
6 wiersze
132 B
Python
6 wiersze
132 B
Python
![]() |
def attrgetter(attr):
|
||
|
assert "." not in attr
|
||
|
def _attrgetter(obj):
|
||
|
return getattr(obj, attr)
|
||
|
return _attrgetter
|