From f2dcb661f8946a4c8389c62fae36a3335b0f15c0 Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Thu, 31 Aug 2017 15:40:42 +0200 Subject: [PATCH] testsuite: Allow pylint to load some c extensions --- testsuite/pylintrc.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/testsuite/pylintrc.conf b/testsuite/pylintrc.conf index ce7e407dfc..019adafc22 100644 --- a/testsuite/pylintrc.conf +++ b/testsuite/pylintrc.conf @@ -21,6 +21,10 @@ persistent=no # usually to register additional checkers. load-plugins=ext.exception_messages,ext.ssl_protocols,ext.pylint_compat +# A comma-separated list of package or module names from where C extensions may +# be loaded. Extensions are loading into the active Python interpreter and may +# run arbitrary code +extension-pkg-whitelist=lxml,posix1e [MESSAGES CONTROL]