Fix range of supported versions for marshalled files
This commit is contained in:
@@ -185,7 +185,7 @@ bool PycModule::isSupportedVersion(int major, int minor)
|
|||||||
case 2:
|
case 2:
|
||||||
return (minor >= 0 && minor <= 7);
|
return (minor >= 0 && minor <= 7);
|
||||||
case 3:
|
case 3:
|
||||||
return (minor >= 0 && minor <= 10);
|
return (minor >= 0 && minor <= 11);
|
||||||
default:
|
default:
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user