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

std: Destabilize the internals of panic! #24212

Merged
merged 2 commits into from
Apr 9, 2015

Commits on Apr 8, 2015

  1. std: Destabilize the internals of panic!

    Now that we have a `#[allow_internal_unstable]` attribute for macros there's no
    need for these two `begin_unwind` functions to be stable. Right now the `panic!`
    interface is the only one we wish to stabilize, so remove the stability markers
    from these functions.
    
    While this is a breaking change, it is highly unlikely to break any actual code.
    It is recommended to use the `panic!` macro instead if it breaks explicit calls
    into `std::rt`.
    
    [breaking-change]
    cc rust-lang#24208
    alexcrichton committed Apr 8, 2015
    Configuration menu
    Copy the full SHA
    65e3f03 View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2015

  1. Remove pretty-expanded from failing tests

    This commit removes pretty-expanded from all tests that wind up calling panic!
    one way or another now that its internals are unstable.
    alexcrichton committed Apr 9, 2015
    Configuration menu
    Copy the full SHA
    ec7c800 View commit details
    Browse the repository at this point in the history