-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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 5 pull requests #130572
Rollup of 5 pull requests #130572
Commits on Aug 31, 2024
-
Improve documentation for <integer>::from_str_radix
Two improvements to the documentation: - Document `-` as a valid character for signed integer destinations - Make the documentation even more clear that extra whitespace and non-digit characters is invalid. Many other languages, e.g. c++, are very permissive in string to integer routines and simply try to consume as much as they can, ignoring the rest. This is trying to make the transition for developers who are used to the conversion semantics in these languages a bit easier.
Configuration menu - View commit details
-
Copy full SHA for 467dbcb - Browse repository at this point
Copy the full SHA 467dbcbView commit details
Commits on Sep 19, 2024
-
Configuration menu - View commit details
-
Copy full SHA for a786be5 - Browse repository at this point
Copy the full SHA a786be5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3ebff28 - Browse repository at this point
Copy the full SHA 3ebff28View commit details -
Configuration menu - View commit details
-
Copy full SHA for 078b067 - Browse repository at this point
Copy the full SHA 078b067View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5e47168 - Browse repository at this point
Copy the full SHA 5e47168View commit details -
Configuration menu - View commit details
-
Copy full SHA for c891082 - Browse repository at this point
Copy the full SHA c891082View commit details -
Configuration menu - View commit details
-
Copy full SHA for afe7907 - Browse repository at this point
Copy the full SHA afe7907View commit details -
Configuration menu - View commit details
-
Copy full SHA for 037b978 - Browse repository at this point
Copy the full SHA 037b978View commit details -
[Clippy] Swap
single_char_add_str
/format_push_string
to use diagn……ostic items instead of paths
Configuration menu - View commit details
-
Copy full SHA for 28f4c82 - Browse repository at this point
Copy the full SHA 28f4c82View commit details -
Configuration menu - View commit details
-
Copy full SHA for 846ae57 - Browse repository at this point
Copy the full SHA 846ae57View commit details -
Configuration menu - View commit details
-
Copy full SHA for 15240a9 - Browse repository at this point
Copy the full SHA 15240a9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 25da0e2 - Browse repository at this point
Copy the full SHA 25da0e2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5b55270 - Browse repository at this point
Copy the full SHA 5b55270View commit details -
Configuration menu - View commit details
-
Copy full SHA for 372f68b - Browse repository at this point
Copy the full SHA 372f68bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1890620 - Browse repository at this point
Copy the full SHA 1890620View commit details -
Configuration menu - View commit details
-
Copy full SHA for 89532c0 - Browse repository at this point
Copy the full SHA 89532c0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5f42ae1 - Browse repository at this point
Copy the full SHA 5f42ae1View commit details -
[Clippy] Swap
unnecessary_owned_empty_strings
to use diagnostic ite……m instead of path
Configuration menu - View commit details
-
Copy full SHA for 5f85f73 - Browse repository at this point
Copy the full SHA 5f85f73View commit details -
Configuration menu - View commit details
-
Copy full SHA for 43b8e04 - Browse repository at this point
Copy the full SHA 43b8e04View commit details -
Configuration menu - View commit details
-
Copy full SHA for 364e552 - Browse repository at this point
Copy the full SHA 364e552View commit details -
Configuration menu - View commit details
-
Copy full SHA for b2eebee - Browse repository at this point
Copy the full SHA b2eebeeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 13d5732 - Browse repository at this point
Copy the full SHA 13d5732View commit details -
Configuration menu - View commit details
-
Copy full SHA for dc628c8 - Browse repository at this point
Copy the full SHA dc628c8View commit details -
Configuration menu - View commit details
-
Copy full SHA for b67485e - Browse repository at this point
Copy the full SHA b67485eView commit details -
Rollup merge of rust-lang#128001 - Krappa322:master, r=scottmcm
Improve documentation for <integer>::from_str_radix Two improvements to the documentation: - Document `-` as a valid character for signed integer destinations - Make the documentation even more clear that extra whitespace and non-digit characters is invalid. Many other languages, e.g. c++, are very permissive in string to integer routines and simply try to consume as much as they can, ignoring the rest. This is trying to make the transition for developers who are used to the conversion semantics in these languages a bit easier.
Configuration menu - View commit details
-
Copy full SHA for 767ae2b - Browse repository at this point
Copy the full SHA 767ae2bView commit details -
Rollup merge of rust-lang#130553 - GnomedDev:remove-clippy-paths, r=c…
…ompiler-errors [Clippy] Get rid of most `std` `match_def_path` usage, swap to diagnostic items. Part of rust-lang/rust-clippy#5393. This was going to remove all `std` paths, but `SeekFrom` has issues being cleanly replaced with a diagnostic item as the paths are for variants, which currently cannot be diagnostic items. This also, as a last step, categories the paths to help with future path removals.
Configuration menu - View commit details
-
Copy full SHA for 569153a - Browse repository at this point
Copy the full SHA 569153aView commit details -
Rollup merge of rust-lang#130554 - ShE3py:unsupported-exitcode, r=Nor…
…atrieb `pal::unsupported::process::ExitCode`: use an `u8` instead of a `bool` `ExitCode` should “represents the status code the current process can return to its parent under normal termination”, but is currently represented as a `bool` on unsupported platforms, making the `impl From<u8> for ExitCode` lossy. Fixes rust-lang#130532. History: [IRLO thread](https://internals.rust-lang.org/t/mini-pre-rfc-redesigning-process-exitstatus/5426) (`ExitCode` as a `main` return), rust-lang#48618 (initial impl), rust-lang#93445 (`From<u8>` impl).
Configuration menu - View commit details
-
Copy full SHA for 553c20c - Browse repository at this point
Copy the full SHA 553c20cView commit details -
Rollup merge of rust-lang#130556 - Urgau:link_cfg_internal, r=jieyouxu
Mark the `link_cfg` feature as internal This PR marks the `link_cfg` feature as internal because it's a perme-unstable feature, only used by `core`/`std`and `unwind`.
Configuration menu - View commit details
-
Copy full SHA for 9f0d32c - Browse repository at this point
Copy the full SHA 9f0d32cView commit details -
Rollup merge of rust-lang#130558 - taiki-e:s390x-atomic-128, r=cuviper
Support 128-bit atomics on s390x Since LLVM 18 (llvm/llvm-project@c568927), 128-bit atomics are fully supported on s390x. And the current minimum external LLVM version is now 18 (rust-lang#130487). s390x 128-bit atomic instructions (lpq,stpq,cdsg) has been present since [the First Edition of the Principles of Operation](https://publibfp.dhe.ibm.com/epubs/pdf/dz9zr000.pdf). (LLVM's minimal supported architecture level [is z10 (the Eighth Edition of the PoP)](https://github.com/llvm/llvm-project/blob/llvmorg-19.1.0/llvm/lib/Target/SystemZ/SystemZProcessors.td#L16-L17).) cc rust-lang#99069 r? `@cuviper`
Configuration menu - View commit details
-
Copy full SHA for f715815 - Browse repository at this point
Copy the full SHA f715815View commit details