Returns value of PyLIMITED_API to build for current Python.
()
| 3190 | |
| 3191 | |
| 3192 | def current_py_limited_api(): |
| 3193 | ''' |
| 3194 | Returns value of PyLIMITED_API to build for current Python. |
| 3195 | ''' |
| 3196 | a, b = map(int, platform.python_version().split('.')[:2]) |
| 3197 | return f'0x{a:02x}{b:02x}0000' |
| 3198 | |
| 3199 | |
| 3200 | def install_dir(root=None): |
no outgoing calls
no test coverage detected
searching dependent graphs…