You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
524B

  1. """setuptools.errors
  2. Provides exceptions used by setuptools modules.
  3. """
  4. from distutils.errors import DistutilsError
  5. class RemovedCommandError(DistutilsError, RuntimeError):
  6. """Error used for commands that have been removed in setuptools.
  7. Since ``setuptools`` is built on ``distutils``, simply removing a command
  8. from ``setuptools`` will make the behavior fall back to ``distutils``; this
  9. error is raised if a command exists in ``distutils`` but has been actively
  10. removed in ``setuptools``.
  11. """