-
Notifications
You must be signed in to change notification settings - Fork 111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
type #pynamespace has no field mod error #505
Comments
No clue about this one. Perhaps try the |
Thanks for the followup, I did try the other day and its still there on |
Thanks for checking. I probably will need a MWE to comment usefully. |
I got a MWE, which is not exactly the First, module test
using Requires, Markdown
@init @require Requires="ae029012-a4dd-5104-9daa-d747884805df" begin
"""
docs
"""
function foo
end
end
end And finally
|
I'm getting the following error on Julia 1.4.2 / Revise 2.7.2 which is 100% reproducible and doesn't involve changing any code, its just triggered when these packages are loaded. Is this error message enough for an expert to dechiper what's going on? If not let me know and I will work on coming up with a MWE.
The crux of it is that I have something like
where Py2Call is another of my packages that provides the
py2"..."
string macro (which calls Python 2 using PyCall and an auxilliary Julia worker), the macro itself expanding to include another call to@eval
andPyCall.@py_str
.To trigger the bug I do
using Revise, Ultradeep100d, Py2Call
and I get the error below. The reference topynamespace
in the actual error must be this one.Again, let me know if a MWE is needed.
The text was updated successfully, but these errors were encountered: