Returns a string identifying the compiler used for compiling Python.
()
| 1246 | return _sys_version()[4:6] |
| 1247 | |
| 1248 | def python_compiler(): |
| 1249 | |
| 1250 | """ Returns a string identifying the compiler used for compiling |
| 1251 | Python. |
| 1252 | |
| 1253 | """ |
| 1254 | return _sys_version()[6] |
| 1255 | |
| 1256 | ### The Opus Magnum of platform strings :-) |
| 1257 |
nothing calls this directly
no test coverage detected
searching dependent graphs…