Return the base name of the library file. This will include suffixes such as -mt, but will not include a file extension.
(self)
| 610 | return self.name |
| 611 | |
| 612 | def get_base_name(self): |
| 613 | """Return the base name of the library file. |
| 614 | |
| 615 | This will include suffixes such as -mt, but will not include a file extension. |
| 616 | """ |
| 617 | return self.get_base_name_prefix() |
| 618 | |
| 619 | def get_ext(self): |
| 620 | """Return the appropriate file extension for this library.""" |
no test coverage detected