summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorDmitry Pribysh <dmand@yandex.ru>2015-10-22 15:19:04 +0300
committerDmitry Pribysh <dmand@yandex.ru>2015-10-22 15:19:04 +0300
commita4c074d5a2dbe49f52c131c33fea68f60fadef86 (patch)
treea32d0c79ce261dea528d0e32f8cc06276c4d1a2e /ChangeLog
parent525a54d010f04157cb2d63768f9a1853783ffbf4 (diff)
downloadpylint-a4c074d5a2dbe49f52c131c33fea68f60fadef86.tar.gz
Fix documentation build warnings and errors
Errors fixed: - unqouted emphasis character usage (*) - missing list index Fixes #481.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 3 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 2003d86..16fe347 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -204,11 +204,11 @@ ChangeLog for Pylint
* yield-outside-func is also emitted for `yield from`.
* Add a new error, 'too-many-star-expressions', emitted when
- there are more than one starred expression (*x) in an assignment.
+ there are more than one starred expression (`*x`) in an assignment.
The warning is emitted only on Python 3.
* Add a new error, 'invalid-star-assignment-target', emitted when
- a starred expression (*x) is used as the lhs side of an assignment,
+ a starred expression (`*x`) is used as the lhs side of an assignment,
as in `*x = [1, 2]`. This is not a SyntaxError on Python 3 though.
* Detect a couple of objects which can't be base classes (bool,
@@ -220,7 +220,7 @@ ChangeLog for Pylint
SyntaxWarning on Python 2.
* Add a new error, 'star-needs-assignment-target', emitted on Python 3 when
- a Starred expression (*x) is not used in an assignment target. This is not
+ a Starred expression (`*x`) is not used in an assignment target. This is not
caught when parsing the AST on Python 3, so it needs to be a separate check.
* Add a new error, 'unsupported-binary-operation', emitted when