<div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Current SVN trunk *almost* works with IronPython <a href="http://1.1.1." target="_blank">1.1.1.</a> I filed an<br>

issue to nose project&#39;s issue tracker for remaining problems.<br>
<a href="http://code.google.com/p/python-nose/issues/detail?id=183" target="_blank">http://code.google.com/p/python-nose/issues/detail?id=183</a></blockquote></div><br>What about the dependency on parser.py, which is not available in IronPython? <br>
<br>This dep seems trivial to remove, as they only need a constant from compiler module, which imports parser.<br><br>from compiler.consts import CO_GENERATOR<br><br>it can be substituted with:<br><br>CO_GENERATOR=0x0020<br>
<br>--<br>Kamil<br><br>