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.
()
| 1152 | return _sys_version()[2] |
| 1153 | |
| 1154 | def python_revision(): |
| 1155 | |
| 1156 | """ Returns a string identifying the Python implementation |
| 1157 | revision. |
| 1158 | |
| 1159 | For CPython this is the SCM revision from which the |
| 1160 | Python binary was built. |
| 1161 | |
| 1162 | If not available, an empty string is returned. |
| 1163 | |
| 1164 | """ |
| 1165 | return _sys_version()[3] |
| 1166 | |
| 1167 | def python_build(): |
| 1168 |
nothing calls this directly
no test coverage detected