-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Improve hygiene of alloc::format!
#64060
Conversation
r? @dtolnay (rust_highfive has picked a reviewer for you, use r? to override) |
The job Click to expand the log.
I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact |
@bors r+ But I would like to see the hygienic suggestion from #63687 (comment) implemented. That approach of |
📌 Commit dc447e06217cd8c206c62eb838a7ede4d0b4002b has been approved by |
@bors r- |
Ping from triage - |
Will update in a couple of days. |
dc447e0
to
d42e603
Compare
Updated. |
Should we change the PR title too? |
alloc::format!
alloc::format!
@bors r+ |
📌 Commit d42e603 has been approved by |
⌛ Testing commit d42e603 with merge ce8b01ce2bba41f767ee49ad7b6df71569c11d74... |
Improve hygiene of `alloc::format!` `format` now uses `format_args` though a `__export` module, as described in rust-lang#63687 (comment). Fixes rust-lang#63687
@bors retry rolled up |
⌛ Testing commit d42e603 with merge 679d12dbf8dd935eb09eb6067cc1523bbd9d5536... |
Improve hygiene of `alloc::format!` `format` now uses `format_args` though a `__export` module, as described in rust-lang#63687 (comment). Fixes rust-lang#63687
@bors retry rolled up |
Rollup of 6 pull requests Successful merges: - #64060 (Improve hygiene of `alloc::format!`) - #64072 (Replace file_stem by file_name in rustdoc markdown) - #64085 (Tweak unsatisfied HRTB errors) - #64129 (vxWorks: set DEFAULT_MIN_STACK_SIZE to 256K and use min_stack to pass initial stack size to rtpSpawn) - #64188 (rustc: Allow the cdylib crate type with wasm32-wasi) - #64349 (documentation for AtomicPtr CAS operations) Failed merges: r? @ghost
⌛ Testing commit d42e603 with merge 7e56c231fc7cfb03fffd21950ffe7988e8626caa... |
Improve hygiene of `alloc::format!` `format` now uses `format_args` though a `__export` module, as described in rust-lang#63687 (comment). Fixes rust-lang#63687
@bors retry rolled up |
Rollup of 6 pull requests Successful merges: - #64060 (Improve hygiene of `alloc::format!`) - #64072 (Replace file_stem by file_name in rustdoc markdown) - #64129 (vxWorks: set DEFAULT_MIN_STACK_SIZE to 256K and use min_stack to pass initial stack size to rtpSpawn) - #64188 (rustc: Allow the cdylib crate type with wasm32-wasi) - #64326 (Fixed documentation within c_str::from_ptr) - #64349 (documentation for AtomicPtr CAS operations) Failed merges: r? @ghost
format
now usesformat_args
though a__export
module, as described in #63687 (comment).Fixes #63687