MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / python_implementation

Function python_implementation

tools/python-3.11.9-amd64/Lib/platform.py:1106–1117  ·  view source on GitHub ↗

Returns a string identifying the Python implementation. Currently, the following implementations are identified: 'CPython' (C implementation of Python), 'IronPython' (.NET implementation of Python), 'Jython' (Java implementation of Python), 'Py

()

Source from the content-addressed store, hash-verified

1104 return result
1105
1106def python_implementation():
1107
1108 """ Returns a string identifying the Python implementation.
1109
1110 Currently, the following implementations are identified:
1111 'CPython' (C implementation of Python),
1112 'IronPython' (.NET implementation of Python),
1113 'Jython' (Java implementation of Python),
1114 'PyPy' (Python implementation of Python).
1115
1116 """
1117 return _sys_version()[0]
1118
1119def python_version():
1120

Callers 1

simple_server.pyFile · 0.90

Calls 1

_sys_versionFunction · 0.85

Tested by

no test coverage detected