summaryrefslogtreecommitdiff
path: root/NEWS.txt
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2014-03-30 04:53:30 +0200
committerFlorent Xicluna <florent.xicluna@gmail.com>2014-03-30 04:53:30 +0200
commit20c7c950a79f24ad53cfc874689e32b903493f36 (patch)
tree527d7116f1e084f9bc7472eac12d147964625c61 /NEWS.txt
parenta55a126350880ef378cb7e8d6576e400d7f6205d (diff)
downloadpyflakes-20c7c950a79f24ad53cfc874689e32b903493f36.tar.gz
Do not bind the function in the current scope, until its arguments are handled; fixes lp:1270952
Diffstat (limited to 'NEWS.txt')
-rw-r--r--NEWS.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/NEWS.txt b/NEWS.txt
index fcfa2bf..482ee68 100644
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -6,6 +6,8 @@ UNRELEASED:
loop variable.
- Report undefined name for `(a, b) = (1, 2)` but not for the general
unpacking `(a, b) = func()`.
+ - Correctly detect when an imported module is used in default arguments
+ of a method, when the method and the module use the same name.
0.8.0 (2014-03-22):
- Adapt for the AST in Python 3.4.