/
eb
/
python_learn
Обзор
Документация
Войти
/
eb
/
python_learn
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
venv/Lib/site-packages/setuptools/errors.py
16 строк
524 B
EvgeniyBudaev
Type Hints
01 мар 2021, 15:20
01 мар 2021, 15:20
6f8a194
Код
Авторство
О чём код?
"""setuptools.errors Provides exceptions used by setuptools modules. """ from distutils.errors import DistutilsError class RemovedCommandError(DistutilsError, RuntimeError): """Error used for commands that have been removed in setuptools. Since ``setuptools`` is built on ``distutils``, simply removing a command from ``setuptools`` will make the behavior fall back to ``distutils``; this error is raised if a command exists in ``distutils`` but has been actively removed in ``setuptools``. """