Returns a string identifying the Python implementation revision. For CPython this is the SCM revision from which the Python binary was built. If not available, an empty string is returned.
()
| 1225 | return _sys_version()[2] |
| 1226 | |
| 1227 | def python_revision(): |
| 1228 | |
| 1229 | """ Returns a string identifying the Python implementation |
| 1230 | revision. |
| 1231 | |
| 1232 | For CPython this is the SCM revision from which the |
| 1233 | Python binary was built. |
| 1234 | |
| 1235 | If not available, an empty string is returned. |
| 1236 | |
| 1237 | """ |
| 1238 | return _sys_version()[3] |
| 1239 | |
| 1240 | def python_build(): |
| 1241 |
nothing calls this directly
no test coverage detected
searching dependent graphs…