The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use Test;
BEGIN { plan tests => 10 }

use Inline::Python qw();

for (1 .. 10) {
    Inline::Python::py_finalize;
    Inline::Python::py_initialize;
    ok(Inline::Python::py_eval("True", 0));
}