Files
ray-project--ray/python/ray/experimental/queue.py
T
2026-07-13 13:17:40 +08:00

14 lines
278 B
Python

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"]