summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2014-11-17 17:02:19 +0200
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2014-11-17 17:02:19 +0200
commit95a68a38c0b3a99ccdae089480ce4977d7f0c9dc (patch)
tree9f7d8067accb5a1d87512e8e875b54220531eebb /ChangeLog
parent712cc928a1915b253cd8f551b9c8095983559f02 (diff)
downloadpylint-95a68a38c0b3a99ccdae089480ce4977d7f0c9dc.tar.gz
Add 'old-octal-literal' to Python 3 porting checker.
This warning is emitted when encountering octals with the old syntax, in the form '0number'.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog3
1 files changed, 3 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index a7f3901..f42ff32 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -179,6 +179,9 @@ ChangeLog for Pylint
mode. This mode will emit warnings and errors for constructs
invalid or removed in Python 3, helping the users of Pylint
to port their projects.
+
+ * Add 'old-octal-literal' to Python 3 porting checker, emitted when
+ encountering octals with the old syntax.