You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reverts #58108. It is not allowed for packages to call
`Base.get_extension`, so it should never have been made public.
Something simply being documented in the manual is never any allowable
argument for making something public.
The correct way to use this functionality is with dispatch. Loosely:
```julia
module Main
function get_extension end
end
module MainPkgExt # extension module in Main
using Other
Main.get_extension(args...) = Other.call(args...)
end
```
0 commit comments