libstd: Skip trailing whitespaces after outer rparen#1912
Merged
erickt merged 2 commits intorust-lang:masterfrom Feb 29, 2012
Merged
libstd: Skip trailing whitespaces after outer rparen#1912erickt merged 2 commits intorust-lang:masterfrom
erickt merged 2 commits intorust-lang:masterfrom
Conversation
This makes "{ \"foo\": 1 }\n" and "[ 1 ]\n" valid json string
Contributor
Author
|
I found that JSON value which ends with trailing whitespaces (e.g. |
erickt
added a commit
that referenced
this pull request
Feb 29, 2012
libstd: Skip trailing whitespaces after outer rparen
Contributor
|
Thanks for catching that! |
celinval
added a commit
to celinval/rust-dev
that referenced
this pull request
Jun 4, 2024
This change add support to rlib libraries and add proper error handling for crate types that aren't supported. We also no longer crash if there was no supported target found.
Kobzol
pushed a commit
to Kobzol/rust
that referenced
this pull request
Dec 30, 2024
Minor additions and resorting.
bors
pushed a commit
to rust-lang-ci/rust
that referenced
this pull request
Jan 2, 2025
Minor additions and resorting.
a4lg
pushed a commit
to a4lg/rust
that referenced
this pull request
Sep 17, 2025
use `qemu-user` instead of `qemu-user-static` for loongarch CI
a4lg
pushed a commit
to a4lg/rust
that referenced
this pull request
Sep 17, 2025
use `qemu-user` instead of `qemu-user-static` for loongarch CI
a4lg
pushed a commit
to a4lg/rust
that referenced
this pull request
Sep 17, 2025
use `qemu-user` instead of `qemu-user-static` for loongarch CI
a4lg
pushed a commit
to a4lg/rust
that referenced
this pull request
Sep 17, 2025
use `qemu-user` instead of `qemu-user-static` for loongarch CI
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Typical JSON file ends with trailing newlines, but
json::from_strhandles it as invalid JSON in current implementation.