> > Current SVN trunk *almost* works with IronPython 1.1.1. I filed an > issue to nose project's issue tracker for remaining problems. > http://code.google.com/p/python-nose/issues/detail?id=183
What about the dependency on parser.py, which is not available in IronPython? This dep seems trivial to remove, as they only need a constant from compiler module, which imports parser. from compiler.consts import CO_GENERATOR it can be substituted with: CO_GENERATOR=0x0020 -- Kamil
_______________________________________________ Users mailing list [email protected] http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
