As I'm working to eliminate the reliance of distutils.compilers on distutils (as part of pypa/setuptools#3622), I find the "dry run" functionality binds everything together. Spawn has its own behavior to account for dry-run. Each command and compiler has a .execute method to honor dry run.
And it got me thinking - does anybody use this functionality? My guess is probably not, especially now that most of this is handled in isolated environments and as part of build backends.
So let's explore just removing it.
As I'm working to eliminate the reliance of
distutils.compilersondistutils(as part of pypa/setuptools#3622), I find the "dry run" functionality binds everything together. Spawn has its own behavior to account for dry-run. Each command and compiler has a.executemethod to honor dry run.And it got me thinking - does anybody use this functionality? My guess is probably not, especially now that most of this is handled in isolated environments and as part of build backends.
So let's explore just removing it.