We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
scan_uri_escapes
scan_uri_escapes uses a function parse_hex which is deprecated in Julia v0.2.0 and removed in Julia v0.3.0. 😱
parse_hex
The text was updated successfully, but these errors were encountered:
char(x) is deprecated in Julia v0.4.0. And alternative is Char(x).
char(x)
Char(x)
Sorry, something went wrong.
parse_hex(x)'s alternative is parseint(x, 16), and parseint(s, base)'s alternative is parse(Int, s, base).
parse_hex(x)
parseint(x, 16)
parseint(s, base)
parse(Int, s, base)
Successfully merging a pull request may close this issue.
scan_uri_escapes
uses a functionparse_hex
which is deprecated in Julia v0.2.0 and removed in Julia v0.3.0. 😱The text was updated successfully, but these errors were encountered: