koichi12's picture
Add files using upload-large-folder tool
c9870ab verified
raw
history blame
278 Bytes
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"]