Mercurial > repos > guerler > hhblits
comparison lib/python3.8/site-packages/setuptools/errors.py @ 1:64071f2a4cf0 draft default tip
Deleted selected files
author | guerler |
---|---|
date | Mon, 27 Jul 2020 03:55:49 -0400 |
parents | 9e54283cc701 |
children |
comparison
equal
deleted
inserted
replaced
0:9e54283cc701 | 1:64071f2a4cf0 |
---|---|
1 """setuptools.errors | |
2 | |
3 Provides exceptions used by setuptools modules. | |
4 """ | |
5 | |
6 from distutils.errors import DistutilsError | |
7 | |
8 | |
9 class RemovedCommandError(DistutilsError, RuntimeError): | |
10 """Error used for commands that have been removed in setuptools. | |
11 | |
12 Since ``setuptools`` is built on ``distutils``, simply removing a command | |
13 from ``setuptools`` will make the behavior fall back to ``distutils``; this | |
14 error is raised if a command exists in ``distutils`` but has been actively | |
15 removed in ``setuptools``. | |
16 """ |