(renamed project from dulce to littletable)
-------------
- Improved exception message when duplicate or None value is given for a
unique index attribute.
- Support for namedtuples and __slots__-defining objects supplied by Colin
McPhail, thanks!
- Added Table.pivot() method, to return a pivot table on one or more
attributes. New PivotTable class includes methods for extracting data in
both Table and tabular formats.
- Added more details to the docstring for Table.join, to more completely
describe the sequence of steps to join 2 or more Tables, using join(), or
join_to and '+'. Also, removed table_name argument in Table.join, to
simplify this call (the resulting table can be easily renamed using Table
call form).
- Python 3 compatibility changes, importing simplejson or json, as
appropriate - thanks again to Colin for the Python compatibility testing.
- Renamed _TableJoin to JoinTerm, and added documentation on how it is used
to build up table joins using '+' addition notation.