Add Python::has_minimum_version

This commit is contained in:
Richard Berger
2020-03-27 16:28:43 -04:00
parent 8b75fb2950
commit 3b1244831e
5 changed files with 25 additions and 11 deletions

View File

@ -117,3 +117,11 @@ int Python::execute_file(char *fname)
init();
return impl->execute_file(fname);
}
/* ------------------------------------------------------------------ */
bool Python::has_minimum_version(int major, int minor)
{
init();
return impl->has_minimum_version(major, minor);
}