-
Notifications
You must be signed in to change notification settings - Fork 368
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
ERROR: -
has no method matching -(::Uint8, ::Char)
#717
Comments
Doing |
Ok, great. Thanks. |
Here is the first block in the trace 405 if byte == '-'
406 return -value, left < right, false
407 elseif byte == '+'
408 return value, left < right, false
409 elseif '0' <= byte <= '9'
410 value += (byte - '0') * power
411 return value, true, false
412 else
413 return value, false, false
414 end
415 end Incidentally, this error is raised only in testing. The methods calling |
Note that |
I'd say |
Yes, I forgot to write that.
|
Nice! Exciting times, but a lot of new things to keep in mind for the next few months. |
This error is cropping up on Julia v0.4 tests in a couple packages (NLreg, Quandl). Not sure this is a DataFrames issue but that is a common link
dmbates/NLreg.jl#7
The text was updated successfully, but these errors were encountered: