summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-06-25 23:42:10 +0300
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-06-25 23:42:10 +0300
commitdde7afa51359b0a51b0a336a3dfbce4da0d719ee (patch)
tree4c8c7793d55e2f6e41e249477a3e056f4875e7d3 /ChangeLog
parent8f550e18295a573a4e9a106cd9af3cac944af7c6 (diff)
downloadpylint-dde7afa51359b0a51b0a336a3dfbce4da0d719ee.tar.gz
Add a new error for the Python 3 porting checker, `import-star-module-level`.
This error is used when a star import is detected in another scope than the module level, which is an error on Python 3. Using this will emit a SyntaxWarning on Python 2.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 800e8c4..745cb18 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -187,6 +187,11 @@ ChangeLog for Pylint
* Detect a couple of objects which can't be base classes (bool,
slice, range and memoryview, which weren't detected until now).
+
+ * Add a new error for the Python 3 porting checker, `import-star-module-level`,
+ which is used when a star import is detected in another scope than the
+ module level, which is an error on Python 3. Using this will emit a
+ SyntaxWarning on Python 2.