blob: eae904970e052dea96f95f93abbb35d2aa543d11 [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001from collections import namedtuple
2
3
4class C(namedtuple('Coord', 'latitude longitude')):
5 def foo(self):
6 return -1
7
8
9c = C()
10c.lat<caret>