summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Pribysh <dmand@yandex.ru>2015-10-22 15:23:16 +0300
committerDmitry Pribysh <dmand@yandex.ru>2015-10-22 15:23:16 +0300
commitd02274bda3d47d47395ffa15c2d756f4cdfc0516 (patch)
tree6bda3f7115b8787a978ab09d2cc67abe27815951
parenta4c074d5a2dbe49f52c131c33fea68f60fadef86 (diff)
downloadpylint-doc-emphasis-fix.tar.gz
Remove trailing whitespace from ChangeLogdoc-emphasis-fix
-rw-r--r--ChangeLog10
1 files changed, 5 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 16fe347..62a973f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -93,7 +93,7 @@ ChangeLog for Pylint
* When checking for invalid arguments to a callable, in typecheck.py,
look up for the __init__ in case the found __new__ comes from builtins.
-
+
Since the __new__ comes from builtins, it will not have attached any
information regarding what parameters it expects, so the check
will be useless. Retrieving __init__ in that case will at least
@@ -102,7 +102,7 @@ ChangeLog for Pylint
* Don't emit no-member for classes with unknown bases.
Since we don't know what those bases might add, we simply ignore
- the error in this case.
+ the error in this case.
* Lookup in the implicit metaclass when checking for no-member,
if the class in question has an implicit metaclass, which is
@@ -166,7 +166,7 @@ ChangeLog for Pylint
* Don't emit undefined-variable if the node is guarded by a NameError, Exception
or bare except clause.
-
+
* Add a new warning, 'using-constant-test', which is emitted when a conditional
statement (If, IfExp) uses a test which is always constant, such as numbers,
classes, functions etc. This is most likely an error from the user's part.
@@ -345,7 +345,7 @@ ChangeLog for Pylint
an async context manager block is used with an object which doesn't
support this protocol (PEP 492).
- * Add a new convention warning, 'singleton-comparison', emitted when
+ * Add a new convention warning, 'singleton-comparison', emitted when
comparison to True, False or None is found.
* Don't emit 'assigning-non-slot' for descriptors. Closes issue #652.
@@ -375,7 +375,7 @@ ChangeLog for Pylint
depth exceeded error, due to its visitor architecture. The peephole
just transforms such calls, if it can, into the final resulting string
and this exhibit a problem, because the visit_binop method stops being
- called (in the optimized AST it will be a Const node).
+ called (in the optimized AST it will be a Const node).
2015-03-11 -- 1.4.2