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

overhauled escape_string's doc and added missing mapping #24539

Merged
merged 9 commits into from
Dec 4, 2017
Merged

overhauled escape_string's doc and added missing mapping #24539

merged 9 commits into from
Dec 4, 2017

Conversation

carstenbauer
Copy link
Member

See #22286.

@kshyatt kshyatt added docs This change adds or pertains to documentation strings "Strings!" labels Nov 8, 2017
@carstenbauer
Copy link
Member Author

Something else I should do here, or is it just that no one has found the time to review this PR yet?

@fredrikekre
Copy link
Member

Something else I should do here, or is it just that no one has found the time to review this PR yet?

Likely the latter.

See also [`unescape_string`](@ref).
The reverse is [`unescape_string`](@ref).

escape_string(io, str::AbstractString[, esc::AbstractString]) -> Void
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Typically we list both signatures at the top together, or split into two separate docstrings.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I prefer the latter. Changed it accordingly.

@carstenbauer
Copy link
Member Author

carstenbauer commented Nov 22, 2017

Check errors seem to be unrelated?

end
end)
end
d, state = nex
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What happened here?

@KristofferC
Copy link
Member

Part of a function is chopped off in the end of the file. Also, it would be nice to have test that checks the different type combinations and the return type.

@carstenbauer
Copy link
Member Author

I don't know how that happend...

I'll add some tests later today.

buf = IOBuffer()
print(buf, join(s22021, "\n"))
@test isvalid(String, take!(buf))
end
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Again ...

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, I think I know why this happened - sync problem while working remotely.

@carstenbauer
Copy link
Member Author

Tests added.

@carstenbauer
Copy link
Member Author

IMHO this should be good to go.

@StefanKarpinski StefanKarpinski merged commit f2d41b8 into JuliaLang:master Dec 4, 2017
@carstenbauer carstenbauer deleted the crstnbr branch December 4, 2017 21:49
"""
function escape_string(io, s::AbstractString, esc::AbstractString)
escape_string(s::AbstractString, esc::AbstractString) = sprint(endof(s), escape_string, s, esc)
escape_string(s::AbstractString) = sprint(endof(s), escape_string, s, "\"")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This seems to be the wrong default set of esc characters:

julia> sprint(io->escape_string(io, "\""))
"\""

julia> escape_string("\"")
"\\\""

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
docs This change adds or pertains to documentation strings "Strings!"
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants