[Ironpython-users] static analysis tool

Joseph Mortensen jmortensen at bungie.com
Tue Sep 30 19:28:53 CEST 2014


I'm trying to static analysis on python code that has very heavy usage of .NET libraries. I've seen pyflakes, pylint, and pychecker as the main tools to do this stuff in python, but I haven't gotten any of them working properly with IronPython in windows.

Are there any recommendations for something that could analyze:

import clr
clr.AddReference("System")
from System import String
stuff = String("my string")
print stuff
stuff.ThisDoesntExist()

without tripping up on the System and String imports and find that "stuff.ThisDoesntExist()" doesn't actually exist?

Thanks,
Joe

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/ironpython-users/attachments/20140930/2372cd3b/attachment.html>


More information about the Ironpython-users mailing list