queue.py 278 B

12345678910111213
  1. import warnings
  2. from ray.util.queue import Empty, Full, Queue
  3. warnings.warn(
  4. DeprecationWarning(
  5. "ray.experimental.queue has been moved to ray.util.queue. "
  6. "Please update your import path."
  7. ),
  8. stacklevel=2,
  9. )
  10. __all__ = ["Empty", "Full", "Queue"]