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

Fix deprecation warning while deserializing BigFloat (and possibly other Big types) #12386

Closed
amitmurthy opened this issue Jul 30, 2015 · 0 comments
Labels
help wanted Indicates that a maintainer wants help on an issue or pull request

Comments

@amitmurthy
Copy link
Contributor

julia> io=IOBuffer(); serialize(io, BigFloat(1.0)); seekstart(io); deserialize(io);
WARNING: BigFloat(s::AbstractString) is deprecated, use parse(BigFloat,s) instead.
 in depwarn at ./deprecated.jl:63
 in call at deprecated.jl:49
 in deserialize at serialize.jl:702
 in deserialize_datatype at serialize.jl:636
 in handle_deserialize at serialize.jl:457
 in deserialize at serialize.jl:429
 in deserialize at serialize.jl:426
while loading no file, in expression starting on line 0

Need to review other "Big" types that may have the same issue and also add ser/deser tests for these types.

@amitmurthy amitmurthy added the help wanted Indicates that a maintainer wants help on an issue or pull request label Jul 30, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
help wanted Indicates that a maintainer wants help on an issue or pull request
Projects
None yet
Development

No branches or pull requests

1 participant