micropython-lib/python-stdlib/operator/test_operator.py

12 wiersze
114 B
Python
Czysty Zwykły widok Historia

2015-05-09 22:53:31 +00:00
import operator
class A:
pass
2015-05-09 22:53:31 +00:00
a = A()
a.name = "foo"
f = operator.attrgetter("name")
2015-05-09 22:53:31 +00:00
assert f(a) == "foo"