On Nov 9, 2009, at 10:57 AM, Chris Colbert wrote: > I noticed you just changed the version signature too: > > Version < 0.12 > > Does that mean we can't turn that off in >= 0.12, or must we just > explicitly declare it?
That's the default value. In Cython < 0.12, you had to explicitly declare Python semantics. For Cython 0.12+ you have to explicitly declare C semantics. Yes, it's a huge change, but we decided it was worth the cost. To get Sage to compile I just explicitly enabled c division everywhere. - Robert _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
