Return the distutils distribution object for self.
(self)
| 907 | raise ValueError('Unknown option: '+key) |
| 908 | |
| 909 | def get_distribution(self): |
| 910 | """Return the distutils distribution object for self.""" |
| 911 | from numpy.distutils.core import get_distribution |
| 912 | return get_distribution() |
| 913 | |
| 914 | def _wildcard_get_subpackage(self, subpackage_name, |
| 915 | parent_name, |
no test coverage detected