Delete all build components; the package cache, package builds, bootstrap builds and distributions.
(self, args)
| 859 | component_clean_methods[component](args) |
| 860 | |
| 861 | def clean_all(self, args): |
| 862 | """Delete all build components; the package cache, package builds, |
| 863 | bootstrap builds and distributions.""" |
| 864 | self.clean_dists(args) |
| 865 | self.clean_builds(args) |
| 866 | self.clean_download_cache(args) |
| 867 | |
| 868 | def clean_dists(self, _args): |
| 869 | """Delete all compiled distributions in the internal distribution |
nothing calls this directly
no test coverage detected