(self, hook_handler)
| 76 | |
| 77 | |
| 78 | def clone(self, hook_handler): |
| 79 | ec = self.__class__(distutils_section=self._distutils_section, |
| 80 | **self._conf_keys) |
| 81 | ec._hook_handler = hook_handler |
| 82 | return ec |
| 83 | |
| 84 | def use_distribution(self, dist): |
| 85 | if isinstance(dist, Distribution): |
no outgoing calls