Re: [IronPython] pyFlakes pySmell

2010-04-01 Thread Jeff Hardy
On Thu, Apr 1, 2010 at 1:59 AM, Aravin wrote: > Hi Guys, > > Thanks for the information on this. > > Jeff, I tried to download and compiler your _ast library, but it's giving > meĀ errors. > > ... > > I'm using IronPython 2.6RC1. Am I doing something wrong? Probably not. I haven't gotten it workin

Re: [IronPython] pyFlakes pySmell

2010-04-01 Thread Michael Foord
On 01/04/2010 08:59, Aravin wrote: [snip...] Also, if anyone is interested, I updated the compiler package found in FePy to work with IronPython 2.6RC1. I'm able to run pyFlakes on IronPython using it (also tried pySmell and it works so far). I'm fixing up errors as I encounter them. Is there a

Re: [IronPython] pyFlakes pySmell

2010-04-01 Thread Aravin
Hi Guys, Thanks for the information on this. Jeff, I tried to download and compiler your _ast library, but it's giving me errors. Error 1 'IronPython.Runtime.PythonModule' does not contain a definition for 'TryGetName' and no extension method 'TryGetName' accepting a first argument of type 'Iron

Re: [IronPython] pyFlakes pySmell

2010-03-25 Thread Michael Foord
On 25/03/2010 13:44, Jeff Hardy wrote: On Thu, Mar 25, 2010 at 5:10 AM, Michael Foord wrote: They almost certainly use the compiler / ast modules that aren't available for IronPython. You can ship CPython as part of your application though, without needing it to be installed. http:/

Re: [IronPython] pyFlakes pySmell

2010-03-25 Thread Jeff Hardy
On Thu, Mar 25, 2010 at 5:10 AM, Michael Foord wrote: > They almost certainly use the compiler / ast modules that aren't available > for IronPython. You can ship CPython as part of your application though, > without needing it to be installed. http://bitbucket.org/jdhardy/_ast/ There's one compi

Re: [IronPython] pyFlakes pySmell

2010-03-25 Thread Michael Foord
On 25/03/2010 07:08, Aravin wrote: Hello everyone, Im trying to get pyFlakes and pySmell to work with IronPython without needing to install CPython. They almost certainly use the compiler / ast modules that aren't available for IronPython. You can ship CPython as part of your application tho

[IronPython] pyFlakes pySmell

2010-03-25 Thread Aravin
Hello everyone, Im trying to get pyFlakes and pySmell to work with IronPython without needing to install CPython. Has anyone done this? Im trying to provide intellisense for an editor im working on. Is there any better way of getting intellisense than using pysmell? Thanks, Aravin ___