summaryrefslogtreecommitdiff
path: root/alot/db/__init__.py
Commit message (Collapse)AuthorAge
* db: drop unused module-level importsAnton Khirnov2021-01-30
|
* remove unused importsPatrick Totzke2019-08-11
|
* Remove old __future__ importsLucas Hoffmann2018-06-19
| | | | They are not needed for python >= 3.0.
* Use absolute_imports from __future__Lucas Hoffmann2017-01-18
|
* Clean up importsLucas Hoffmann2016-12-09
| | | | | | - use relative imports if possible - group imports into standard library, third party, and alot modules - sort imports alphabetically
* cleanup: make Thread and Message available in alot.dbPatrick Totzke2012-08-10
|
* cleanup: move DBManager to its own filePatrick Totzke2012-08-10
|
* add copyright statements to all source filesPatrick Totzke2012-06-14
| | | | cf issue #472
* doc: minor docstring corrections for dbPatrick Totzke2012-06-05
|
* added debug statements for flushingPatrick Totzke2012-05-17
| | | | issue #413
* neater error handling while flushingPatrick Totzke2012-05-17
| | | | | this avoids logging a traceback on temporarily locked indices and imports db.error classes directly for use in DBManager
* use new db's for writequeue entries in flushPatrick Totzke2012-05-17
| | | | | | | | | | This moves the creation / destruction of the notmuch.Database object used to change the index to the code for a single writequeue entry: Instead of using one db for all entries, we let each one have its own. This *should* allow the "afterwards" callback allow to retrieve data from an updated index, that already reflects the changes just made. issue #317
* db: count_threadsPatrick Totzke2012-03-18
| | | | | | | | this introduces a new method `count_threads` for DBManager that uses a recently introduced getter of the same name in the bindings. We also adjust the dependencies for the bindings accordingly issue #178
* pep8 fixesPatrick Totzke2012-03-11
|
* refacor: move db errors to separate filePatrick Totzke2012-03-11
|
* refactor db: move into submodulePatrick Totzke2012-03-11
this moves messages into the new submodule alot.db which from now on also contains Threads in a separate file