()
| 133 | """ |
| 134 | |
| 135 | def _interpreter(): |
| 136 | name = platform.python_implementation() |
| 137 | version = platform.python_version() |
| 138 | if name == 'PyPy': |
| 139 | version = '.'.join(map(str, sys.pypy_version_info[:3])) |
| 140 | full_version = [version] |
| 141 | is_64bits = sys.maxsize > 2**32 |
| 142 | if is_64bits: |
| 143 | full_version.append('64bit') |
| 144 | return name, "-".join(full_version) |
| 145 | |
| 146 | tags = [] |
| 147 |