Hi, 2012/1/25 Andrew Francis <[email protected]>
> > > /home/andrew/pypy-stm/pypy/rpython/lltypesystem/rstr.py(978)do_stringformat() > -> assert isinstance(r_arg, IntegerRepr) > This one is easy: you are formatting a float with %d, which is not supported by RPython. For your debug output, use %s instead. -- Amaury Forgeot d'Arc
_______________________________________________ pypy-dev mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-dev
