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

Rename std::path to std::old_path; introduce new std::path #21759

Merged
merged 2 commits into from
Feb 4, 2015

Commits on Feb 3, 2015

  1. Rename std::path to std::old_path

    As part of [RFC 474](rust-lang/rfcs#474), this
    commit renames `std::path` to `std::old_path`, leaving the existing path
    API in place to ease migration to the new one. Updating should be as
    simple as adjusting imports, and the prelude still maps to the old path
    APIs for now.
    
    [breaking-change]
    aturon committed Feb 3, 2015
    Configuration menu
    Copy the full SHA
    3e39f0b View commit details
    Browse the repository at this point in the history
  2. Add new path module

    Implements [RFC 474](rust-lang/rfcs#474); see
    that RFC for details/motivation for this change.
    
    This initial commit does not include additional normalization or
    platform-specific path extensions. These will be done in follow up
    commits or PRs.
    aturon committed Feb 3, 2015
    Configuration menu
    Copy the full SHA
    45ddf50 View commit details
    Browse the repository at this point in the history