summaryrefslogtreecommitdiff
path: root/alot/__main__.py
Commit message (Collapse)AuthorAge
* Use dict's iter methodsDylan Baker2016-12-21
| | | | | | | | This patch replaces a number of uses of dict.items, dict.values, and dict.keys with their iterative siblings. The advantage of using the iterator version is that they don't copy the keys, values, or items, but simply return references. This reduces memory usage and may speed up the these operations a bit.
* Fix values to methods in __main__Dylan Baker2016-12-21
| | | | | several of these don't take a self argument. In one case self is needed, in the others decorating them as static methods fixes the behavior.
* Fix except syntaxLucas Hoffmann2016-12-09
|
* add __main__.pyPatrick Totzke2015-12-17