[IronPython] IronPython and nose

Kamil Dworakowski kamil at dworakowski.name
Wed Apr 30 06:09:22 PDT 2008


>
> 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
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.ironpython.com/pipermail/users-ironpython.com/attachments/20080430/5a9da907/attachment.htm 


More information about the Users mailing list