Returns a string identifying the compiler used for compiling Python.
()
| 1173 | return _sys_version()[4:6] |
| 1174 | |
| 1175 | def python_compiler(): |
| 1176 | |
| 1177 | """ Returns a string identifying the compiler used for compiling |
| 1178 | Python. |
| 1179 | |
| 1180 | """ |
| 1181 | return _sys_version()[6] |
| 1182 | |
| 1183 | ### The Opus Magnum of platform strings :-) |
| 1184 |
nothing calls this directly
no test coverage detected