Skip to content

Commit

Permalink
deprecate bin, oct, dec, hex, and base in favor of string and keywo…
Browse files Browse the repository at this point in the history
…rd args (#25804)

* deprecate bin, oct, dec, hex, and base in favor of `string` and keyword args

* Work around inference problem in `div(::UInt128, ::UInt128)`
  • Loading branch information
JeffBezanson authored Mar 2, 2018
1 parent 0998ebf commit bcf3132
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cluster.jl
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ function start_worker(out::IO, cookie::AbstractString=readline(stdin))
process_messages(client, client, true)
end
print(out, "julia_worker:") # print header
print(out, "$(dec(LPROC.bind_port))#") # print port
print(out, "$(string(LPROC.bind_port))#") # print port
print(out, LPROC.bind_addr)
print(out, '\n')
flush(out)
Expand Down

0 comments on commit bcf3132

Please sign in to comment.