by casey.marshall:
Issue in 1.3 & tip.
Calling big.Rat.SetString with a rational string value that has a zero denominator will
produce an incorrect and unexpected result.
big.Rat.SetString simply assumes the denominator is 1 when it is actually 0.
big.Rat.SetString with a zero denominator should return nil, false.
http://play.golang.org/p/kTfKTZd8JI
-Casey