2007/1/1, Michael Foord <[EMAIL PROTECTED]>: > Can we use this without compiling Fepy ourselves ? > > We'd rather use the Microsoft DLLs (just so we don't have to move > IronPython sources into version control). Are there external files we > could use to add the AST support to IronPython ? > > I checked out the SVN repository, but it wasn't obvious from browsing > the files so I thought I'd ask.
All codes are contained in the single file, fepy/ast.py. https://fepy.svn.sourceforge.net/svnroot/fepy/trunk/fepy/ast.py To use without FePy, you would need to replace "compiler.parse()" calls with "ast.parse()" instead. IIRC, there's only one such place in case of Pyflakes. -- Seo Sanghyeon _______________________________________________ users mailing list [email protected] http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
