summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-05-12 12:47:28 +0300
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-05-12 12:47:28 +0300
commit9ca3cadc0ff8fbc5475b9b95c68e6bf26981c828 (patch)
tree2cb7db40a5146abbd7fcfcd97a57de604cb3ea67 /ChangeLog
parent1ce7c693e900e73187f82830c8599667a2343d28 (diff)
downloadpylint-9ca3cadc0ff8fbc5475b9b95c68e6bf26981c828.tar.gz
Detect undefined-variables in function default arguments.
This patch improves the detection of undefined variables and variables used before assignment for variables used as default arguments to function, where the variable was first defined in the class scope. Closes issue #342.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6637f6e..d4a126d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -115,6 +115,11 @@ ChangeLog for Pylint
for mixin classes. Actual errors can occur in mixin classes, but this is
controlled by the ignore-mixin-members option. Closes issue #412.
+ * Improve the detection of undefined variables and variables used before
+ assignment for variables used as default arguments to function,
+ where the variable was first defined in the class scope.
+ Closes issue #342.
+
2015-03-14 -- 1.4.3