From a4c074d5a2dbe49f52c131c33fea68f60fadef86 Mon Sep 17 00:00:00 2001 From: Dmitry Pribysh Date: Thu, 22 Oct 2015 15:19:04 +0300 Subject: Fix documentation build warnings and errors Errors fixed: - unqouted emphasis character usage (*) - missing list index Fixes #481. --- ChangeLog | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ChangeLog') 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 -- cgit v1.2.1