From 6a46b1031deb6a5cb830aacaeabed37d0ba018e6 Mon Sep 17 00:00:00 2001 From: Jeff Bezanson Date: Thu, 4 Jan 2018 11:01:24 -0500 Subject: [PATCH] remove `using DelimitedFiles` from default juliarc (#25374) --- base/deprecated.jl | 5 +++++ etc/juliarc.jl | 2 -- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/base/deprecated.jl b/base/deprecated.jl index c66718f1cd409..b2712c0ef3b32 100644 --- a/base/deprecated.jl +++ b/base/deprecated.jl @@ -1262,6 +1262,11 @@ export conv, conv2, deconv, filt, filt!, xcorr @eval @deprecate_moved $(Symbol("@profile")) "Profile" true true +@deprecate_moved readdlm "DelimitedFiles" true true +@deprecate_moved writedlm "DelimitedFiles" true true +@deprecate_moved readcsv "DelimitedFiles" true true +@deprecate_moved writecsv "DelimitedFiles" true true + @deprecate_moved base64encode "Base64" true true @deprecate_moved base64decode "Base64" true true @deprecate_moved Base64EncodePipe "Base64" true true diff --git a/etc/juliarc.jl b/etc/juliarc.jl index 7e7eabcbb8526..971f38b51807c 100644 --- a/etc/juliarc.jl +++ b/etc/juliarc.jl @@ -1,4 +1,2 @@ # This file should contain site-specific commands to be executed on Julia startup # Users may store their own personal commands in the user home directory `homedir()`, in a file named `.juliarc.jl` - -using DelimitedFiles