From 11ce42921dc007b6d4e3c3f5279acb9fd7c16c87 Mon Sep 17 00:00:00 2001 From: Kristoffer Carlsson Date: Fri, 9 Mar 2018 08:51:01 +0100 Subject: [PATCH] remove parse form keyword fixes --- src/database/simple.jl | 4 ---- test/runtests.jl | 1 - 2 files changed, 5 deletions(-) diff --git a/src/database/simple.jl b/src/database/simple.jl index 0b6b849..ef94821 100644 --- a/src/database/simple.jl +++ b/src/database/simple.jl @@ -420,10 +420,6 @@ begin "tryparse(\$T, \$s, \$base)", "tryparse(\$T, \$s!, base = \$base!)" ) - match(KeywordsUnlocked, - "parse(\$T, \$s, \$base)", - "parse(\$T, \$s!, base = \$base!)" - ) match(KeywordsUnlocked, "mkdir(\$path, \$mode)", "mkdir(\$path, mode = \$mode!)" diff --git a/test/runtests.jl b/test/runtests.jl index 1868e2c..fb74fd2 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1245,7 +1245,6 @@ for (old, new) in (("Timer(a, b)", "Timer(a, interval = b)"), ("chop(a, b)", "chop(a, head = b)"), ("chop(a, b, c)", "chop(a, head = b, tail = c)"), ("tryparse(a, b, c)", "tryparse(a, b, base = c)"), - ("parse(a, b, c)", "parse(a, b, base = c)"), ("mkdir(a, b)", "mkdir(a, mode = b)"), ("mkpath(a, b)", "mkpath(a, mode = b)"), ("countlines(a, b)", "countlines(a, eol = b)"),