Detect-It-Easy/db/PE/Python.3.sg
2014-11-03 08:52:59 +01:00

15 lines
305 B
Text

// DIE's signature file
init("library","Python");
function detect(bShowType,bShowVersion,bShowOptions)
{
var aPython=PE.isLibraryPresentExp(/^python(\d\d)/i);
if(aPython)
{
sVersion=aPython[1]/10;
bDetected=1;
}
return result(bShowType,bShowVersion,bShowOptions);
}