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

Restore StackOverflow error message for repeated frames #39378

Commits on Jan 24, 2021

  1. Restore StackOverflow error message for repeated frames

    Fixes backtrace printing to display the number of times a frame is
    repeated, if there is a frame that's duplicated several times.
    
    ```julia
    julia> function foo() foo() end
    foo (generic function with 1 method)
    
    julia> foo()
    ERROR: StackOverflowError:
    Stacktrace:
     [1] foo() (repeats 79984 times)
       @ Main ./REPL[16]:1
    ```
    
    Fixes JuliaLang#37587.
    NHDaly committed Jan 24, 2021
    Configuration menu
    Copy the full SHA
    8bed145 View commit details
    Browse the repository at this point in the history

Commits on Feb 19, 2021

  1. Configuration menu
    Copy the full SHA
    e06235f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b2ad4d7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    df0e968 View commit details
    Browse the repository at this point in the history
  4. Revert "Add debugging print lines: print backtrace length"

    This reverts commit df0e968.
    NHDaly committed Feb 19, 2021
    Configuration menu
    Copy the full SHA
    89911f8 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2021

  1. Configuration menu
    Copy the full SHA
    dced572 View commit details
    Browse the repository at this point in the history