Returns a tuple (buildno, builddate) stating the Python build number and date as strings.
()
| 1238 | return _sys_version()[3] |
| 1239 | |
| 1240 | def python_build(): |
| 1241 | |
| 1242 | """ Returns a tuple (buildno, builddate) stating the Python |
| 1243 | build number and date as strings. |
| 1244 | |
| 1245 | """ |
| 1246 | return _sys_version()[4:6] |
| 1247 | |
| 1248 | def python_compiler(): |
| 1249 |
nothing calls this directly
no test coverage detected
searching dependent graphs…