|
|
|
|
|
by tterrace
4505 days ago
|
|
Here's a neat (and totally unpythonic) way to bring that down a bit: python -m timeit --setup "from collections import namedtuple; Point = namedtuple('Point', ['x', 'y']); p = Point(x=0, y=0); get_y = Point.y.fget; get_x = Point.x.fget" "get_x(p) + get_y(p)"
|
|