mirror of
https://github.com/wassname/ray.git
synced 2026-06-27 23:54:34 +08:00
12 lines
271 B
Python
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"]
|