Stefan Behnel wrote: > just a quick note that I added support for > > from __future__ import ...
Speaking of that, I realised the other day that Pyrex is currently still using the old Python semantics for division, and there's no way of getting the new ones. What I'd really like to do is make new-style division be on all the time, but in light of the recent integer for-loop fiasco, I'm reluctant to do anything that might break old code. So the obvious thing to do is support importing division from __future__. My current thought is that this would apply to all division, including C types. What do people think of that? -- Greg _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
