Re: [IronPython] IronPython is leaking

2005-12-27 Thread Dino Viehland
ROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Szymon Kobalczyk Sent: Wednesday, December 21, 2005 2:30 PM To: Discussion of IronPython Subject: Re: [IronPython] IronPython is leaking Martin Maly wrote: >This is a known problem in IronPython. The code generated using Evaluate is >curren

Re: [IronPython] IronPython is leaking

2005-12-22 Thread Andrew Pliszka
: [IronPython] IronPython is leaking Martin Maly wrote: >This is a known problem in IronPython. The code generated using Evaluate is currently not generated as garbage-collectable code. This is a something that we have yet to fix. In the meantime what might help is pre-compiling the code and then exec

Re: [IronPython] IronPython is leaking

2005-12-21 Thread Szymon Kobalczyk
Martin Maly wrote: >This is a known problem in IronPython. The code generated using Evaluate is >currently not generated as garbage-collectable code. This is a something that >we have yet to fix. In the meantime what might help is pre-compiling the code >and then execute/eval the code already c

Re: [IronPython] IronPython is leaking

2005-12-21 Thread Keith J. Farmer
But, but... If MN = Meganybble, then 62MN = 31MB. In which case, 31MB -> 120MB is nearly quadrupled, not doubled! ;) - Keith J. Farmer // [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andrew Pliszka Sent: Wednesday, 21 December 2

Re: [IronPython] IronPython is leaking

2005-12-21 Thread Martin Maly
This is a known problem in IronPython. The code generated using Evaluate is currently not generated as garbage-collectable code. This is a something that we have yet to fix. In the meantime what might help is pre-compiling the code and then execute/eval the code already compiled. Martin -O