diff --git a/stdlib/Markdown/Project.toml b/stdlib/Markdown/Project.toml index 90b8a1d385ede..8ce8acbaa5097 100644 --- a/stdlib/Markdown/Project.toml +++ b/stdlib/Markdown/Project.toml @@ -1,5 +1,3 @@ name = "Markdown" uuid = "d6f4376e-aef5-505a-96c1-9c027394607a" -[deps] -Pkg = "fe1c5a76-5840-53d2-82f9-288dd83ce2ce" diff --git a/stdlib/Markdown/src/Markdown.jl b/stdlib/Markdown/src/Markdown.jl index addf58eefc3a1..b51ac8f7b253a 100644 --- a/stdlib/Markdown/src/Markdown.jl +++ b/stdlib/Markdown/src/Markdown.jl @@ -5,7 +5,6 @@ Tools for working with the Markdown file format. Mainly for documentation. """ module Markdown -import Pkg import Base: show, ==, with_output_color include(joinpath("parse", "config.jl")) diff --git a/stdlib/REPL/Project.toml b/stdlib/REPL/Project.toml index ebf92836d1a4a..f3b326c75cc3e 100644 --- a/stdlib/REPL/Project.toml +++ b/stdlib/REPL/Project.toml @@ -4,4 +4,3 @@ uuid = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb" [deps] InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240" Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a" -Pkg = "fe1c5a76-5840-53d2-82f9-288dd83ce2ce" diff --git a/stdlib/REPL/src/REPLCompletions.jl b/stdlib/REPL/src/REPLCompletions.jl index 725d5b8fc5185..d64f2cbcdf927 100644 --- a/stdlib/REPL/src/REPLCompletions.jl +++ b/stdlib/REPL/src/REPLCompletions.jl @@ -6,7 +6,6 @@ export completions, shell_completions, bslash_completions using Base.Meta using Base: propertynames, coalesce -import Pkg function completes_global(x, name) return startswith(x, name) && !('#' in x) diff --git a/stdlib/REPL/src/docview.jl b/stdlib/REPL/src/docview.jl index 2fd110550d60f..37be919a6d998 100644 --- a/stdlib/REPL/src/docview.jl +++ b/stdlib/REPL/src/docview.jl @@ -1,7 +1,6 @@ ## Code for searching and viewing documentation using Markdown -import Pkg using Base.Docs: catdoc, modules, DocStr, Binding, MultiDoc, keywords, isfield, namify, bindingexpr, defined, resolve, getdoc, meta, aliasof, signature