(self, version_components=2)
| 633 | yield Platform.from_tags(self._supported_tags[index:]) |
| 634 | |
| 635 | def binary_name(self, version_components=2): |
| 636 | # type: (int) -> str |
| 637 | return self._implementation.calculate_binary_name( |
| 638 | version=self._version[:version_components] if version_components > 0 else None |
| 639 | ) |
| 640 | |
| 641 | def hashbang(self): |
| 642 | # type: () -> str |
no test coverage detected