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
()
| 1104 | return result |
| 1105 | |
| 1106 | def 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 | |
| 1119 | def python_version(): |
| 1120 |
no test coverage detected