From patchwork Thu Aug 24 14:33:27 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [6, of, 9] contrib: add bzrlib to list of packages from which we import symbols From: Augie Fackler X-Patchwork-Id: 23298 Message-Id: <3973af0b0ae185ab05b0.1503585207@imladris.local> To: mercurial-devel@mercurial-scm.org Date: Thu, 24 Aug 2017 10:33:27 -0400 # HG changeset patch # User Augie Fackler # Date 1503430134 14400 # Tue Aug 22 15:28:54 2017 -0400 # Node ID 3973af0b0ae185ab05b0ddd54867bbc23df6b701 # Parent a2b9f131501a0c1dbb83ce425faa4acd50d5f8f8 contrib: add bzrlib to list of packages from which we import symbols Helps some tests pass the import checker. diff --git a/contrib/import-checker.py b/contrib/import-checker.py --- a/contrib/import-checker.py +++ b/contrib/import-checker.py @@ -21,6 +21,7 @@ if True: # disable lexical sorting check # Whitelist of modules that symbols can be directly imported from. allowsymbolimports = ( '__future__', + 'bzrlib', 'hgclient', 'mercurial', 'mercurial.hgweb.common',