Suppose I load a particular package while working in Julia, e.g. : using PyPlot
Later I want to using another package that has an overlapping functionality using Winston If I do that, I get the following warning: *Warning: using Winston.plot in module Main conflicts with an existing identifier.* and I can not access the functionality of Winston! Is there some way to unload PyPlot, before I can start using Winston?
