Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 92c0199308d7e61f719c4ecfa84d4ea2 > files > 28

php-python-0.8.0-7mdv2009.1.i586.rpm

--TEST--
Python: python_exec()
--SKIPIF--
<?php if (!extension_loaded('python')) die("skip\n");
--FILE--
<?php

function test_exec($s)
{
	echo "Command: $s\n";
	$result = @python_exec($s);
	echo "Result:  " . (($result) ? "success\n" : "failure\n");
	echo "\n";
}

test_exec('i = 1');
test_exec('iiiii');
--EXPECT--
Command: i = 1
Result:  success

Command: iiiii
Result:  failure