> +def test_translate():
> + from pypy.translator.interactive import Translation
> +
> + def func():
> + poll({})
> +
> + t = Translation(func)
> + fc = t.compile_c([])
wuaa. Please use from pypy.translator.c.test.test_genc import compile
and use this one.
Cheers,
fijal