kopia lustrzana https://github.com/micropython/micropython-lib
operator: Add, with attrgetter() implementation.
rodzic
c8b084915e
commit
7b7e937602
|
@ -0,0 +1,5 @@
|
|||
def attrgetter(attr):
|
||||
assert "." not in attr
|
||||
def _attrgetter(obj):
|
||||
return getattr(obj, attr)
|
||||
return _attrgetter
|
Ładowanie…
Reference in New Issue