(version, minVersion)
| 403 | |
| 404 | |
| 405 | def meetsMinVersion(version, minVersion): |
| 406 | def versiontotuple(ver): |
| 407 | return tuple(map(int, ver.split("."))) |
| 408 | return versiontotuple(version) >= versiontotuple(minVersion) |
| 409 | |
| 410 | |
| 411 | def isURL(path): |
no test coverage detected