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

scan_uri_escapes has a bug #164

Closed
Paalon opened this issue Jun 12, 2024 · 2 comments · Fixed by #165
Closed

scan_uri_escapes has a bug #164

Paalon opened this issue Jun 12, 2024 · 2 comments · Fixed by #165

Comments

@Paalon
Copy link
Contributor

Paalon commented Jun 12, 2024

scan_uri_escapes uses a function parse_hex which is deprecated in Julia v0.2.0 and removed in Julia v0.3.0. 😱

@Paalon
Copy link
Contributor Author

Paalon commented Jun 12, 2024

char(x) is deprecated in Julia v0.4.0. And alternative is Char(x).

@Paalon
Copy link
Contributor Author

Paalon commented Jun 12, 2024

parse_hex(x)'s alternative is parseint(x, 16), and parseint(s, base)'s alternative is parse(Int, s, base).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants