summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-05-11 22:58:32 +0300
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-05-11 22:58:32 +0300
commit3915dffbc513093c42d8ac35adf9c7bdc9de62b3 (patch)
tree9fae2071f53b450f9d45e628cffed9d04a93b07e /ChangeLog
parenta22423a33716f09244cee4306910c5957db1d615 (diff)
downloadpylint-3915dffbc513093c42d8ac35adf9c7bdc9de62b3.tar.gz
Improve detection of undefined variables.
Detect undefined variable cases, where the "definition" of an undefined variable was in del statement, e.g: x = y del y Instead of emitting used-before-assignment, which is totally misleading, it now emits undefined-variable. Closes issue #528.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index b58028d..b52bcc6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -106,6 +106,11 @@ ChangeLog for Pylint
* Added new checker 'extensions.check_docs' that verifies parameter
documention in Sphinx, Google, and Numpy style.
+ * Detect undefined variable cases, where the "definition" of an undefined
+ variable was in del statement. Instead of emitting used-before-assignment,
+ which is totally misleading, it now emits undefined-variable.
+ Closes issue #528.
+
2015-03-14 -- 1.4.3