summaryrefslogtreecommitdiff
path: root/doc/whatsnew/2.2.rst
diff options
context:
space:
mode:
authorssolanki <sushobhitsolanki@gmail.com>2018-08-10 20:09:14 +0530
committerSushobhit <31987769+sushobhit27@users.noreply.github.com>2018-08-17 11:43:02 +0530
commit28a2690021d23dc4adfa4a9b5aec0b3004c922c1 (patch)
tree3552325ea3d37842c97d65dff259efb5a79c0ce4 /doc/whatsnew/2.2.rst
parentd8e7840f5b6f9c9dd9e5e1c38a8c3ec9f05f4a52 (diff)
downloadpylint-git-28a2690021d23dc4adfa4a9b5aec0b3004c922c1.tar.gz
fix false positive ``undefined-variable``
and ``used-before-assignment`` with nonlocal keyword usage. incorporate review comments fix existing test case
Diffstat (limited to 'doc/whatsnew/2.2.rst')
-rw-r--r--doc/whatsnew/2.2.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/whatsnew/2.2.rst b/doc/whatsnew/2.2.rst
index 46e7ac001..bd388ae4c 100644
--- a/doc/whatsnew/2.2.rst
+++ b/doc/whatsnew/2.2.rst
@@ -21,4 +21,6 @@ Other Changes
* `unnecessary-pass` is now also emitted when a function or class contains only docstring and pass statement,
in which case, docstring is enough for empty definition.
+* Fix false positive ``undefined-variable`` and ``used-before-assignment`` with nonlocal keyword usage.
+