Skip to content

Commit

Permalink
add missing deprecations for digits with no pad argument
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffBezanson committed Jul 5, 2018
1 parent 1b3bea5 commit f56e3ec
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion base/deprecated.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1439,7 +1439,9 @@ end
@deprecate countlines(x, eol) countlines(x, eol = eol)
@deprecate PipeBuffer(data, maxsize) PipeBuffer(data, maxsize = maxsize)
@deprecate unsafe_wrap(T, pointer, dims, own) unsafe_wrap(T, pointer, dims, own = own)
@deprecate digits(n, base, pad) digits(n, base = base, pad = pad)
@deprecate digits(n, base) digits(n, base = base)
@deprecate digits(n, base, pad) digits(n, base = base, pad = pad)
@deprecate digits(T, n, base) digits(T, n, base = base)
@deprecate digits(T, n, base, pad) digits(T, n, base = base, pad = pad)

#27908
Expand Down

0 comments on commit f56e3ec

Please sign in to comment.