-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Rollup of 9 pull requests #45141
Rollup of 9 pull requests #45141
Commits on Oct 7, 2017
-
debuginfo-test: Fix rust-lang#45086.
LLDB's output may be None instead of '', and that will cause type mismatch when normalize_whitespace() expects a string instead of None. This commit simply ensures we do pass '' even if the output is None.
Configuration menu - View commit details
-
Copy full SHA for 07b1899 - Browse repository at this point
Copy the full SHA 07b1899View commit details
Commits on Oct 8, 2017
-
Configuration menu - View commit details
-
Copy full SHA for b5b7666 - Browse repository at this point
Copy the full SHA b5b7666View commit details -
Configuration menu - View commit details
-
Copy full SHA for 19029d5 - Browse repository at this point
Copy the full SHA 19029d5View commit details -
Remove ./ prefix from relative URLs
Also remove trailing whitespace to pass tidy checks.
Pirh committedOct 8, 2017 Configuration menu - View commit details
-
Copy full SHA for 9772003 - Browse repository at this point
Copy the full SHA 9772003View commit details -
Fix trying to raise a bare str as an exception. This has been depreca…
…ted since Python 2.5
Configuration menu - View commit details
-
Copy full SHA for dee517a - Browse repository at this point
Copy the full SHA dee517aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 430e875 - Browse repository at this point
Copy the full SHA 430e875View commit details -
Configuration menu - View commit details
-
Copy full SHA for d9e6703 - Browse repository at this point
Copy the full SHA d9e6703View commit details
Commits on Oct 9, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 8240b87 - Browse repository at this point
Copy the full SHA 8240b87View commit details -
New rebase for the issue rust-lang#45022
Add pretty printer files into test execution time-stamping Move find_rust_src_path() as a method for Config Move find_rust_src_path() as a method for Config Call find_rust_src_path() from Config Move find_rust_src_path() from common.rs to header.rs Add pretty printer files as relevant files to get up_to_date information Remove dead code Add two pretty printer files to keep a close watch on Move find_rust_src_path() as a method for Config Move find_rust_src_path() as a method for Config Call find_rust_src_path() from Config Move find_rust_src_path() from common.rs to header.rs Remove dead code Add two pretty printer files to keep a close watch on
Configuration menu - View commit details
-
Copy full SHA for 53a6485 - Browse repository at this point
Copy the full SHA 53a6485View commit details -
Configuration menu - View commit details
-
Copy full SHA for c3ff628 - Browse repository at this point
Copy the full SHA c3ff628View commit details -
Rollup merge of rust-lang#44962 - shepmaster:no-ignore-result, r=stev…
…eklabnik Don't encourage people to ignore threading errors in the docs
Configuration menu - View commit details
-
Copy full SHA for dad731c - Browse repository at this point
Copy the full SHA dad731cView commit details -
Rollup merge of rust-lang#45051 - k0pernicus:master, r=michaelwoerister
Debugger pretty printer files are take into account in test execution time-stamping This PR is proposed to solve the issue rust-lang#45022.
Configuration menu - View commit details
-
Copy full SHA for 9e6b565 - Browse repository at this point
Copy the full SHA 9e6b565View commit details -
Rollup merge of rust-lang#45091 - kennytm:fix-45086, r=michaelwoerister
debuginfo-test: Fix rust-lang#45086. Fixes rust-lang#45086, where all debuginfo-lldb fails when using LLDB from Xcode 9.
Configuration menu - View commit details
-
Copy full SHA for 9687c2e - Browse repository at this point
Copy the full SHA 9687c2eView commit details -
Rollup merge of rust-lang#45106 - Pirh:process_stdio_docs, r=dtolnay
Add links and examples for std::process::Stdio As per rust-lang#29370
Configuration menu - View commit details
-
Copy full SHA for 4c99211 - Browse repository at this point
Copy the full SHA 4c99211View commit details -
Rollup merge of rust-lang#45117 - johnthagen:fix-str-raise, r=alexcri…
…chton Fix raising a bare str as an exception in configure.py Raising a bare `str` has been [deprecated since Python 2.5](https://docs.python.org/2/whatsnew/2.5.html#pep-352-exceptions-as-new-style-classes). On Python 2.7 it produces the following error: ``` TypeError: exceptions must be old-style classes or derived from BaseException, not str ``` For maximum compatibility with Python 2.7 and 3.x, we wrap the error message in `RuntimeError` which derives from `Exception`.
Configuration menu - View commit details
-
Copy full SHA for 743ff73 - Browse repository at this point
Copy the full SHA 743ff73View commit details -
Rollup merge of rust-lang#45118 - johnthagen:fix-section-key-name, r=…
…alexcrichton Fix variable name reference As best I can tell, this was a typo due to how similar it looks to the function above it. PyCharm found this as a unbound local variable.
Configuration menu - View commit details
-
Copy full SHA for 380b795 - Browse repository at this point
Copy the full SHA 380b795View commit details -
Rollup merge of rust-lang#45120 - johnthagen:none-identity-test, r=sf…
…ackler Use identity operator `is` when comparing to None This is very minor, but idiomatic Python code uses `is` for comparisons to `None`. This is because semantically we want to compare to the "identity" of `None`, not its value. See [PEP8 for details](https://www.python.org/dev/peps/pep-0008/#programming-recommendations).
Configuration menu - View commit details
-
Copy full SHA for d7f1a26 - Browse repository at this point
Copy the full SHA d7f1a26View commit details -
Rollup merge of rust-lang#45125 - bleibig:grammar-update, r=alexcrichton
Update grammar to parse current rust syntax Mainly addressing rust-lang#32723. This PR updates the bison grammar so that it can parse the current rust syntax, except for feature-gated syntax additions. It has been tested with all the tests in run-pass. The grammar in this repo doesn't have build logic anymore, but you can test it out in https://github.com/bleibig/rust-grammar, which has all of what's in this PR. If you are interested in having build logic and grammar tests again, I can look into implementing that as well. I'm aware that things are somewhat undecided as to what an official rust grammar should be from the discussion in rust-lang#30942. With this PR we can go back to having an up-to-date flex/bison based grammar, but the rustypop grammar looks interesting as well.
Configuration menu - View commit details
-
Copy full SHA for c5ba2d2 - Browse repository at this point
Copy the full SHA c5ba2d2View commit details -
Rollup merge of rust-lang#45136 - johnthagen:patch-1, r=QuietMisdreavus
Clarify RAM usage during build in README The sentence wasn't immediately clear if it meant RAM or disk space before reading the next sentence. I think this helps clarify it.
Configuration menu - View commit details
-
Copy full SHA for 6a77853 - Browse repository at this point
Copy the full SHA 6a77853View commit details