Commit 9202e0c1 authored by Jason Madden's avatar Jason Madden

Figured out the root cause of the u-v-a crash in...

Figured out the root cause of the u-v-a crash in https://github.com/PyCQA/pylint/issues/846: unsafe-load-any-extension causes it.
parent acc078e7
[MESSAGES CONTROL] [MESSAGES CONTROL]
# Disable the message, report, category or checker with the given id(s). You # Disable the message, report, category or checker with the given id(s). You
...@@ -43,7 +44,7 @@ disable=wrong-import-position, ...@@ -43,7 +44,7 @@ disable=wrong-import-position,
too-many-arguments, too-many-arguments,
redefined-builtin, redefined-builtin,
useless-suppression, useless-suppression,
undefined-all-variable # undefined-all-variable
[FORMAT] [FORMAT]
...@@ -86,3 +87,7 @@ max-attributes=10 ...@@ -86,3 +87,7 @@ max-attributes=10
[BASIC] [BASIC]
bad-functions=input bad-functions=input
# Prospector turns ot unsafe-load-any-extension by default, but
# pylint leaves it off. This is the proximal cause of the
# undefined-all-variable crash.
#unsafe-load-any-extension = no
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment