The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more
12345678910 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));}
use
Test;
BEGIN { plan
tests
=> 10 }
Inline::Python
qw()
;
for
(1 .. 10) {
Inline::Python::py_finalize;
Inline::Python::py_initialize;
ok(Inline::Python::py_eval(
"True"
, 0));
}