We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Should this line,
if sym in _EXCLUDE_SYMBOLS || startswith(sym_string, "_") ...
include || startswith(sym_string, "@_") so that a package can have internal non-exported macros?
|| startswith(sym_string, "@_")
The text was updated successfully, but these errors were encountered:
Yes, looks like an oversight. We've already been naming internal macros with underscores: https://github.com/JuliaOpt/JuMP.jl/blob/79a4fe4d4fc11bc96b62a88b085734429a833dd2/src/macros.jl#L987-L994
Sorry, something went wrong.
I guess this is a breaking change, but it shouldn't hit anyone because they shouldn't be using the macros beginning with an underscore.
Task:
@ccoffrin
mlubin
Successfully merging a pull request may close this issue.
Should this line,
include
|| startswith(sym_string, "@_")
so that a package can have internal non-exported macros?The text was updated successfully, but these errors were encountered: