File size: 278 Bytes
c9870ab | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import warnings
from ray.util.queue import Empty, Full, Queue
warnings.warn(
DeprecationWarning(
"ray.experimental.queue has been moved to ray.util.queue. "
"Please update your import path."
),
stacklevel=2,
)
__all__ = ["Empty", "Full", "Queue"]
|