Bryan Donlan Sat, 17 Jul 2004 07:36:35 -0700
Given the following program: def test(x): return 0 print test(2)
Python 2.3.3 prints 0, but pie-thon.pl and parrot print 2. From the generated PIR, it looks like test is returning an integer but the caller expects a PMC.