No problem, see below. It's a race condition caused by running
multiple parallel instances.
To reproduce, first create 'test.pl' containing the following:
=================
#!/usr/bin/perl
use Inline Python => <<'END_PY';
def test():
a = 0
END_PY
=================
Then run the following:
bash-3.2$ rm -rf _Inline
bash-3.2$ mkdir _Inline
bash-3.2$ for i in {1..50}; do ./test.pl & done
Repeat this a few times if you don't get at least one "Not an ARRAY
reference" error the first time. [Note you'll get other errors mixed
in, like "You are using a config file that was created by an older
version of Inline".]
On Tuesday, 20 August 2013 4:12:19 PM, Stefan Seifert via RT wrote:
Show quoted text