__init__.py 341 B

1234567891011
  1. import warnings
  2. class VisibleDeprecationWarning(UserWarning):
  3. """A DeprecationWarning that users should see."""
  4. pass
  5. warnings.warn("""zmq.eventloop.minitornado is deprecated in pyzmq 14.0 and will be removed.
  6. Install tornado itself to use zmq with the tornado IOLoop.
  7. """,
  8. VisibleDeprecationWarning,
  9. stacklevel=4,
  10. )