I'm new to Python and am reading a book that came out in 2009 and so uses Python 2.5 syntax. It does the following:
_fields_ = [
("cb", DWORD),
("lpReserved", LPTSTR),
...
]
To me it looks like a list of tuples, but at the same time it feels like a Map/Dictionary. Was this the older syntax?