2025-05-16 18:00:22 +04:00

5 lines
81 B
Python

from queue import Queue
from typing import Any
class LifoQueue(Queue[Any]): ...