We don't use 2to3 anymore. We use a single code base. Look at the compatibility file for the various workarounds.
Aaron Meurer On Nov 24, 2013, at 7:48 AM, Chris Smith <[email protected]> wrote: If I don't make the following change in code, the iteritems attribute doesn't get replaced and tests under 3x fail. - return yp.subs([(v, k) for k, v in f.iteritems()]) + return yp.subs([(v, k) for k, v in f.items()]) iteritems is used elsewhere successfully, so I"m not sure what the problem is. Does this sort of thing get reported on our issue tracker? /c -- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sympy. For more options, visit https://groups.google.com/groups/opt_out. -- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sympy. For more options, visit https://groups.google.com/groups/opt_out.
