Returns a tuple (buildno, builddate) stating the Python build number and date as strings.
()
| 1165 | return _sys_version()[3] |
| 1166 | |
| 1167 | def python_build(): |
| 1168 | |
| 1169 | """ Returns a tuple (buildno, builddate) stating the Python |
| 1170 | build number and date as strings. |
| 1171 | |
| 1172 | """ |
| 1173 | return _sys_version()[4:6] |
| 1174 | |
| 1175 | def python_compiler(): |
| 1176 |
nothing calls this directly
no test coverage detected