Skip to content
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

Fix help for operators starting with a dot #9109

Merged
merged 1 commit into from
Nov 25, 2014
Merged

Commits on Nov 22, 2014

  1. Fix help for operators starting with a dot

    This fixes JuliaLang#8903 and supersedes JuliaLang#8922 (cc @hayd). Basically, when you pass a function to the help system (instead of just its name), the system can go through all the modules and only returns those methods that actually extend the same function.  The way it does this, however, is a little hacky... using string concatenation to combine the function name with the module names, and then splitting it back apart again on dots to get the functions within each module.  This simply improves the splitting logic with a regex to handle the leading dot.
    mbauman committed Nov 22, 2014
    Configuration menu
    Copy the full SHA
    5671381 View commit details
    Browse the repository at this point in the history