-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Major changes: - Add doc for SQLiteAckQueue - README.rst structure update - other minor changes
- Loading branch information
1 parent
f6c2053
commit d228cd4
Showing
3 changed files
with
55 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
# coding=utf-8 | ||
__author__ = 'Peter Wang' | ||
__license__ = 'BSD' | ||
__version__ = '0.3.6' | ||
__version__ = '0.4.0' | ||
|
||
from .exceptions import Empty, Full # noqa | ||
from .pdict import PDict # noqa | ||
from .queue import Queue # noqa | ||
from .sqlqueue import SQLiteQueue, FIFOSQLiteQueue, FILOSQLiteQueue, UniqueQ # noqa | ||
from .sqlackqueue import SQLiteAckQueue | ||
|
||
__all__ = ["Queue", "SQLiteQueue", "FIFOSQLiteQueue", "FILOSQLiteQueue", | ||
"UniqueQ", "PDict", "Empty", "Full", "__author__", "__license__", | ||
"__version__"] | ||
"UniqueQ", "PDict", "SQLiteAckQueue", "Empty", "Full", | ||
"__author__", "__license__", "__version__"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters