lexers.py 243 B

1234567
  1. """Deprecated as of 5.0; import from IPython.lib.lexers instead."""
  2. from warnings import warn
  3. warn("nbconvert.utils.lexers is deprecated as of 5.0. Use IPython.lib.lexers", stacklevel=2)
  4. from IPython.lib.lexers import * # noqa: F403, E402