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 regular expression for detecting links in stdout #3078

Merged
merged 1 commit into from Mar 27, 2013

Commits on Mar 25, 2013

  1. fix regular expression for detecting links in stdout

    The previous expression was matching both the beginning and the end of the line,
    which would end up swallowing the next match,
    ultimately matching every other URL in the string.
    
    This removes the end-of-line check, so it will match every URL.
    
    The wrapURLs function to make URLs easier to identify does not seem to have been necessary,
    and has thus been removed.
    
    closes ipython#2834
    minrk committed Mar 25, 2013
    Copy the full SHA
    d8ed554 View commit details
    Browse the repository at this point in the history