Hi. I'am trying simple benchmark of Inline::Python module and find uncontrolled grow of used proccess memory. Benchmark test:
#-------------------------------------- #!/usr/bin/perl use Inline Python => <<'EOC'; def answer(a, b): return a*b EOC use Benchmark; $t = timeit(1_000_000, 'answer(6, 7)'); print timestr($t); #-------------------------------------- Software: Slackware 10.0 Linux kernel 2.4.26 Python 2.3.4 Perl 5.8.4 Inline 0.44 Inline::Python 0.22 Is there known bug or i do something wrong? Thanks. Maxim Nechaev