[IronPython] Please vote up this DLR memory leak bug

2009-02-22 Thread Dody Gunawinata
There's only 5 votes so far. http://www.codeplex.com/IronPython/WorkItem/View.aspx?WorkItemId=20399 -- nomadlife.org ___ Users mailing list Users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Re: [IronPython] Fwd: Ironpython delegates...

2009-02-22 Thread Dino Viehland
Depending on what you're doing you might be better off using Func instead of CallTarget0. CallTarget0 is more of a Python implementation detail and could change w/ major IronPython versions - or even be replaced w/ Func. it's primary purpose is to be the delegate for calling a zero-arg Python

[IronPython] Fwd: Ironpython delegates...

2009-02-22 Thread Antonio Piteira
Found the solution... clr.AddReference("Ironpython") from IronPython.Compiler import CallTarget0 I was looking in the wrong place. -- I've been searching for CallTarget0 and

[IronPython] Ironpython delegates...

2009-02-22 Thread Antonio Piteira
I've been searching for CallTarget0 and from what I read it should be in Microsoft.Scripting.dll, but when I add the reference to clr and import CallTarget0 from Microsoft.Scripting.dll I get this message: --- Error... --- Cannot import name CallTarg