Re: [julia-users] Julia 0.4 warnings and how to fix

2015-09-01 Thread Yichao Yu
On Sep 1, 2015 11:48 AM, "Michael Francis" wrote: > > I get the following - WARNING: module should explicitly import == from Base > > Unfortunately you can't simply do > > Base.==( ... ) Operators are not imported by default in 0.4 anymore. Import them directly or use

Re: [julia-users] Julia 0.4 warnings and how to fix

2015-09-01 Thread Seth
Thanks, Yichao! As a related aside, it appears that using import violates Style Guide #33 (per https://github.com/johnmyleswhite/Style.jl), so is the idiomatic / preferred way of doing this limited to using Base.(:==) ? On Tuesday, September 1, 2015 at 9:06:42 AM UTC-7, Yichao Yu wrote: > > >

[julia-users] Julia 0.4 warnings and how to fix

2015-09-01 Thread Michael Francis
I get the following - WARNING: module should explicitly import == from Base Unfortunately you can't simply do Base.==( ... ) I can fix with import Base: == what is the idiomatic way of doing this in 0.4 Also is there a guide for upgrading packages to 0.4 ?