Skip to content

Commit

Permalink
Add deprecation for filter!(r::Regex, d::Dict)
Browse files Browse the repository at this point in the history
  • Loading branch information
timholy committed Feb 24, 2015
1 parent 20ec0be commit af864f4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions base/deprecated.jl
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,9 @@ const base64 = base64encode
@deprecate (>>)(src::AbstractCmd, dest::AbstractString) pipe(src, stdout=dest, append=true)
@deprecate (.>>)(src::AbstractCmd, dest::AbstractString) pipe(src, stderr=dest, append=true)

# 10314
@deprecate filter!(r::Regex, d::Dict) filter!((k,v)->ismatch(r,k), d)

# 0.4 discontinued functions

function subtypetree(x::DataType, level=-1)
Expand Down

0 comments on commit af864f4

Please sign in to comment.