(sources)
| 62 | |
| 63 | |
| 64 | def check_patchlevel_version(sources): |
| 65 | got = _read_patchlevel_version(sources) |
| 66 | if got != (VER_MAJOR, VER_MINOR, VER_MICRO, VER_FIELD4): |
| 67 | return f"{got[0]}.{got[1]}.{got[2]}{_get_suffix(got[3])}" |
| 68 | |
| 69 | |
| 70 | VER_MAJOR, VER_MINOR, VER_MICRO, VER_FIELD4 = _unpack_hexversion() |
no test coverage detected
searching dependent graphs…