Jeff Bezanson
Jeff Bezanson
I agree interleaving positional and keyword arguments is perhaps a misfeature. We can consider changing that in 2.0, but before then it will have to stay this way. Maybe rename...
IIUC, the order-dependence in this issue is intentional. You can argue clone_all should be the default, but I think the current behavior makes sense. #54464 looks like a different issue.
You can call `jl_normalize_to_compilable_sig` to get the signature that we would compile for.
`Distributed` does not yet support messages from threads other than 1. Should not be too hard to fix.
Thread 1 isn't special, this is just something that hasn't been updated for threads yet. The `Condition` objects used to synchronize workers need to be replaced with `Threads.Condition` plus locking,...
I believe it is possible to run all nodes, including node 1, remotely, and connect your local REPL to the remote node, thereby avoiding mixed-platform issues. @Keno are there instructions...
I guess it needs an option to skip empty fields?
I think we should have readdlm only, and have it only support simple delimited files, not csv, and remove the readcsv function from Base.
Yes, I think we should deprecate `readcsv` right away, and plan to move readdlm into the "standard library" when that process happens, hopefully early in the 0.6 cycle.