summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorTorsten Marek <shlomme@gmail.com>2014-04-18 18:44:53 +0200
committerTorsten Marek <shlomme@gmail.com>2014-04-18 18:44:53 +0200
commit2e152035e8e2c56e2461d3f694ebee3713698767 (patch)
tree68b52d9b09ce704bf09a2b9412751abcf14b81be /ChangeLog
parent14c199bb7ee187e67b3dac216e71695c5090604e (diff)
downloadpylint-2e152035e8e2c56e2461d3f694ebee3713698767.tar.gz
Do not warn about \u escapes in string literals when Unicode literals
are used for Python 2.*. Fixes BitBucket issue #151.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog3
1 files changed, 3 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d57133d..371b0ba 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -11,6 +11,9 @@ ChangeLog for Pylint
* Added a new warning for closing over variables that are
defined in loops. Fixes Bitbucket issue #176.
+ * Do not warn about \u escapes in string literals when Unicode literals
+ are used for Python 2.*. Fixes BitBucket issue #151.
+
* Extend the checking for unbalanced-tuple-unpacking and
unpacking-non-sequence to instance attribute unpacking as well.