You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A subclass of tuple that allows for named attribute access. Note that a structure with the same name and usage is available in Python 2.6 as collections.namedtuple, but this is smaller and available in Python 2.4+. If you ask the question "should I use this or collections.namedtuple?" the answer will invariably be the latter. The only real benef…