[IronPython] Execfile in IronPython 2.0 slower then 1.1

2009-05-14 Thread Cenovsky, Lukas
I was playing yesterday with something and found that execfile is about 10 times slower in Ironpython 2.0 then in 1.1. Does anyone have an idea why? Here is the snippet: from time import time f = open('test.txt', 'w') f.write('res = []\n') f.write(res.append({'1': 'one', '2': 'two'})\n*1)

Re: [IronPython] Crash with Action and reflection question

2009-04-30 Thread Cenovsky, Lukas
-Original Message- From: users-boun...@lists.ironpython.com [mailto:users-boun...@lists.ironpython.com] On Behalf Of Curt Hagenlocher Sent: Thursday, April 30, 2009 3:19 PM To: Discussion of IronPython Subject: Re: [IronPython] Crash with Action and reflection question Another

Re: [IronPython] [wingide-users] Using Wing IDE with IronPython - autocomplete for .NET objects (PI file generator)

2009-04-29 Thread Cenovsky, Lukas
Would be nice to have something similar for vim :-) -- -- Lukas -Original Message- From: users-boun...@lists.ironpython.com [mailto:users-boun...@lists.ironpython.com] On Behalf Of Michael Foord Sent: Wednesday, April 29, 2009 4:45 PM To: Wing Users Cc: Discussion of IronPython

Re: [IronPython] Get a string from JavaScript to IronPython

2009-01-06 Thread Cenovsky, Lukas
Unfortunately we can't apply attributes to Python classes. I get round this particular problem by creating stub classes in C# and inheriting from them in Python. See: http://www.voidspace.org.uk/ironpython/silverlight/scriptable.shtml Is there a CodePlex issue to resolve this? -- --