Open GoogleCodeExporter opened 9 years ago
+one
Returning None for a comparison might be unexpected, so I think absmin/max are
still
needed.
Original comment by Vinzent.Steinberg@gmail.com
on 10 Jun 2009 at 11:20
I don't think it should lead to much confusion if it's well documented.
Original comment by fredrik....@gmail.com
on 10 Jun 2009 at 11:32
Yeah, LU_decomp just would have to be fixed to expect None from comparisons,
otherwise None <=> False.
Original comment by Vinzent.Steinberg@gmail.com
on 10 Jun 2009 at 11:49
Some code that looks like
if x < y:
foo
else:
bar
could be rewritten as
if x < y:
foo
elif x >= y:
bar
else:
baz
Original comment by fredrik....@gmail.com
on 11 Jun 2009 at 11:02
Implemented as part of r1124; there could be some subtleties left to sort out.
Original comment by fredrik....@gmail.com
on 14 Apr 2010 at 3:15
Original issue reported on code.google.com by
fredrik....@gmail.com
on 10 Jun 2009 at 10:45