ttlcollections/ttlcollections/__init__.py

6 lines
242 B
Python
Raw Normal View History

from .structures import TTLQueue, TTLStack, TTLHeap
2020-05-31 15:40:40 +02:00
from .errors import QueueEmpty, StackEmpty, QueueFull, StackFull
__all__ = ["TTLQueue", "TTLStack", "TTLHeap", "QueueEmpty", "QueueFull", "StackEmpty", "StackFull"]
2020-05-31 15:40:40 +02:00
__version__ = (1, 0, 0)