Re: [Ironpython-users] weakref random "SystemError" and "ValueError" exception (affecting _weakrefset.py and abc.py)

2015-05-06 Thread Jeff Hardy
On Tue, May 5, 2015 at 6:19 PM, Andres Sommerhoff wrote: > Great Kuno and Jeff! Thank you for helping with a solution for the issue > with _weakrefset.py (reported on 13th Abril). Looking forward to seeing > Kuno's changes in the next IronPython release! > > Jeff, is it there a schedule for next I

Re: [Ironpython-users] Error running standalone exe using clrtype.py if IronPython is not installed

2015-05-06 Thread Jeff Hardy
On Mon, May 4, 2015 at 6:20 PM, Sebastián Magrí wrote: > On the other hand, would clrtype be something good enough to be developed as > a part of `clr`? Long term, that's the plan. With function attributes in Python 3, and the standardized type hits of PEP 484, it opens all sorts of interesting o

Re: [Ironpython-users] WDB web debugger for IronPython

2015-05-06 Thread Jeff Hardy
Hi Kerray, Is there a GitHub issue for this open already? There probably is for missing co_lnotab, but about dis.findlinestarts failing strangely? Fixing co_lnotab shouldn't be difficult, but the compile error could be trickier. I'm assuming you haven't been able to reproduce it without wdb? You c

Re: [Ironpython-users] PTVS "attach to process" can't see IP in embedded process

2015-05-06 Thread Jeff Hardy
On Wed, Apr 29, 2015 at 10:13 AM, Alain Cormier wrote: > Hi everyone, > > I'm trying to get PTVS to a native app that embeds IP. > > My script starts with >import ptvsd >ptvsd.enable_attach(None) > > I have no problems attaching to ipy.exe if I run the script from there but > what do I nee

[Ironpython-users] Failing to catch exception

2015-05-06 Thread egroups
I'm probably doing something extremely stupid. I'm using Selenium to parse a web page, but can't catch the exceptions it throws: # Add Selenium clr.AddReference("Selenium.WebDriverBackedSelenium.dll") clr.AddReference("ThoughtWorks.Selenium.Core.dll") clr.AddReference("WebDriver.dll") clr.AddRefe

Re: [Ironpython-users] PTVS "attach to process" can't see IP in embedded process

2015-05-06 Thread Alain Cormier
Hi, I'll check the PTVS forums. I posted here because the fact that PTVS has no problems connecting to ipy.exe makes me think that the problem is in how IronPython is embedded in our app. Thanks, Alain On Wed, May 6, 2015 at 10:13 AM, Jeff Hardy wrote: > On Wed, Apr 29, 2015 at 10:13 AM, Alai