Re: [go-nuts] json.Unmarshal and numbers: go 1.7 vs go 1.8

2017-07-16 Thread Traun Leyden
Ok thanks! Btw looks like the copy/paste turned 2^64 -> 264 On Saturday, July 15, 2017 at 11:34:18 AM UTC-7, Ian Lance Taylor wrote: > > On Sat, Jul 15, 2017 at 11:20 AM, Traun Leyden > wrote: > > > > On go 1.7, I'm seeing a difference in behavior between json.Unmarshal > and > > json.Deco

Re: [go-nuts] json.Unmarshal and numbers: go 1.7 vs go 1.8

2017-07-15 Thread Ian Lance Taylor
On Sat, Jul 15, 2017 at 11:20 AM, Traun Leyden wrote: > > On go 1.7, I'm seeing a difference in behavior between json.Unmarshal and > json.Decoder when it comes to json numbers. > > This test program which compares json.Unmarshal() vs. json.NewDecoder() > behavior w.r.t to numbers works fine on go