Files
ray/python/ray/experimental/queue.py

12 lines
271 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"]