summaryrefslogtreecommitdiff
path: root/alot/buffers/buffer.py
Commit message (Collapse)AuthorAge
* buffers: make get_info() asynchronousAnton Khirnov2021-01-20
| | | | | Allows computing message/thread counts asynchronously in a separate thread.
* buffer: drop the ui parameter when not neededAnton Khirnov2020-04-25
|
* remove old new-style classes syntaxPatrick Totzke2019-05-27
| | | | | | Python3 only supports "new-style" classes (those extending object), and we don't need to explicitly inherit from this root class any more. See http://pylint-messages.wikidot.com/messages:c1001
* refactor buffersPatrick Totzke2018-06-19
This splits buffers.py, which contained all buffer classes, into several smaller files. issue #1226