MCPcopy Create free account
hub / github.com/dwavesystems/dwave-cloud-client / _interpreter

Function _interpreter

dwave/cloud/utils/http.py:135–144  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

Callers 1

user_agentFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected