ABI tag.
(self)
| 911 | return ret |
| 912 | |
| 913 | def tag_abi(self): |
| 914 | ''' |
| 915 | ABI tag. |
| 916 | ''' |
| 917 | if self.tag_abi_: |
| 918 | return self.tag_abi_ |
| 919 | elif self.py_limited_api: |
| 920 | return 'abi3' |
| 921 | else: |
| 922 | return 'none' |
| 923 | |
| 924 | def tag_platform(self): |
| 925 | ''' |
no outgoing calls
no test coverage detected