Great point. Definitely looks like a docstring error here. I was speaking somewhat off topic. What I had in mind was the proposed solution in the link to the other github issue (https://github.com/QuantEcon/QuantEcon.jl/issues/64#issuecomment-130149602).
Here for some reason I could call `using Distributions` without any problems. But then when I called `using QuantEcon` it would complain that Distributions couldn't load. Somehow explicitly calling `Base.compilecache(:Distributions)` made it so we could call `using QuantEcon` without a problem... I can't really explain why that worked, but to me it feels like we might have been hitting an edge case bug with the precompilation feature. On Saturday, August 15, 2015 at 6:47:32 PM UTC-4, Steven G. Johnson wrote: > > It is not a problem to load a package where some dependencies are > precompiled and others aren't. The original LoadError is about a docstring, > so it sounds like an incompatibility with the new doc system.
