summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Drung <benjamin.drung@profitbricks.com>2018-09-25 18:45:38 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2018-09-28 14:34:49 +0200
commit2d32ff3b9b17c4900a02e123ec9773f8b69f23a2 (patch)
treef7f83b4506f38a180e60245abd7d4688fe64a584
parent47c258eee17937bae776594a101eb8fdd36cd71d (diff)
downloadpylint-git-2d32ff3b9b17c4900a02e123ec9773f8b69f23a2.tar.gz
Fix Windows newlines (CRLF) to Unix newlines (LF)
Several files in pylint/test/functional have Windows newlines (CRLF) instead of Unix newlines (LF). To list these files, run: ``` find . -type f -exec file "{}" ";" | grep CRLF ``` This commit corrects the line endings of the file that the following commit will touch by running following command: ``` perl -pi -e 's/\r\n/\n/g' pylint/test/functional/using_constant_test.py ``` Signed-off-by: Benjamin Drung <benjamin.drung@profitbricks.com>
-rw-r--r--pylint/test/functional/using_constant_test.py282
1 files changed, 141 insertions, 141 deletions
diff --git a/pylint/test/functional/using_constant_test.py b/pylint/test/functional/using_constant_test.py
index fcd4a850f..61b4f819a 100644
--- a/pylint/test/functional/using_constant_test.py
+++ b/pylint/test/functional/using_constant_test.py
@@ -1,141 +1,141 @@
-"""Verify if constant tests are used inside if statements."""
-# pylint: disable=invalid-name, missing-docstring,too-few-public-methods
-# pylint: disable=no-init,expression-not-assigned, useless-object-inheritance
-
-
-import collections
-
-
-def function():
- yield
-
-
-class Class(object):
-
- def method(self):
- pass
-
-
-instance = Class()
-
-if collections: # [using-constant-test]
- pass
-
-# GenExpr
-if (node for node in range(10)): # [using-constant-test]
- pass
-
-if lambda: None: # [using-constant-test]
- pass
-
-if function: # [using-constant-test]
- pass
-
-if Class: # [using-constant-test]
- pass
-
-if 2: # [using-constant-test]
- pass
-
-if True: # [using-constant-test]
- pass
-
-if '': # [using-constant-test]
- pass
-
-if b'': # [using-constant-test]
- pass
-
-if 2.0: # [using-constant-test]
- pass
-
-if {}: # [using-constant-test]
- pass
-
-if {1, 2, 3}: # [using-constant-test]
- pass
-
-if (1, 2, 3): # [using-constant-test]
- pass
-
-if (): # [using-constant-test]
- pass
-
-# Generator
-generator = function()
-if generator: # [using-constant-test]
- pass
-
-if 1 if 2 else 3: # [using-constant-test]
- pass
-
-def test_comprehensions():
- [data for data in range(100) if len] # [using-constant-test]
- [data for data in range(100) if 1] # [using-constant-test]
- (data for data in range(100) if len) # [using-constant-test]
- (data for data in range(100) if 1) # [using-constant-test]
- {data for data in range(100) if len} # [using-constant-test]
- {data: 1 for data in range(100) if len} # [using-constant-test]
-
-
-
-# For these, we require to do inference, even though the result can be a
-# constant value. For some of them, we could determine that the test
-# is constant, such as 2 + 3, but the components of the BinOp
-# can be anything else (2 + somefunccall).
-
-name = 42
-if name:
- pass
-
-# UnboundMethod / Function
-if Class.method:
- pass
-
-# BoundMethod
-if instance.method:
- pass
-
-if 3 + 4:
- pass
-
-if 3 and 4:
- pass
-
-if not 3:
- pass
-
-if instance.method():
- pass
-
-# pylint: disable=misplaced-comparison-constant
-if 2 < 3:
- pass
-
-if tuple((1, 2, 3)):
- pass
-
-if dict():
- pass
-
-if tuple():
- pass
-
-if [1, 2, 3][:1]:
- pass
-
-def test(*args):
- if args:
- return 42
- return None
-
-def test_good_comprehension_checks():
- [data for data in range(100)]
- [data for data in range(100) if data]
- [data for data in range(100) if len(data)]
- (data for data in range(100) if data)
- (data for data in range(100) if len(data))
- {data for data in range(100) if data}
- {data for data in range(100) if len(data)}
- {data: 1 for data in range(100) if data}
- {data: 1 for data in range(100)}
+"""Verify if constant tests are used inside if statements."""
+# pylint: disable=invalid-name, missing-docstring,too-few-public-methods
+# pylint: disable=no-init,expression-not-assigned, useless-object-inheritance
+
+
+import collections
+
+
+def function():
+ yield
+
+
+class Class(object):
+
+ def method(self):
+ pass
+
+
+instance = Class()
+
+if collections: # [using-constant-test]
+ pass
+
+# GenExpr
+if (node for node in range(10)): # [using-constant-test]
+ pass
+
+if lambda: None: # [using-constant-test]
+ pass
+
+if function: # [using-constant-test]
+ pass
+
+if Class: # [using-constant-test]
+ pass
+
+if 2: # [using-constant-test]
+ pass
+
+if True: # [using-constant-test]
+ pass
+
+if '': # [using-constant-test]
+ pass
+
+if b'': # [using-constant-test]
+ pass
+
+if 2.0: # [using-constant-test]
+ pass
+
+if {}: # [using-constant-test]
+ pass
+
+if {1, 2, 3}: # [using-constant-test]
+ pass
+
+if (1, 2, 3): # [using-constant-test]
+ pass
+
+if (): # [using-constant-test]
+ pass
+
+# Generator
+generator = function()
+if generator: # [using-constant-test]
+ pass
+
+if 1 if 2 else 3: # [using-constant-test]
+ pass
+
+def test_comprehensions():
+ [data for data in range(100) if len] # [using-constant-test]
+ [data for data in range(100) if 1] # [using-constant-test]
+ (data for data in range(100) if len) # [using-constant-test]
+ (data for data in range(100) if 1) # [using-constant-test]
+ {data for data in range(100) if len} # [using-constant-test]
+ {data: 1 for data in range(100) if len} # [using-constant-test]
+
+
+
+# For these, we require to do inference, even though the result can be a
+# constant value. For some of them, we could determine that the test
+# is constant, such as 2 + 3, but the components of the BinOp
+# can be anything else (2 + somefunccall).
+
+name = 42
+if name:
+ pass
+
+# UnboundMethod / Function
+if Class.method:
+ pass
+
+# BoundMethod
+if instance.method:
+ pass
+
+if 3 + 4:
+ pass
+
+if 3 and 4:
+ pass
+
+if not 3:
+ pass
+
+if instance.method():
+ pass
+
+# pylint: disable=misplaced-comparison-constant
+if 2 < 3:
+ pass
+
+if tuple((1, 2, 3)):
+ pass
+
+if dict():
+ pass
+
+if tuple():
+ pass
+
+if [1, 2, 3][:1]:
+ pass
+
+def test(*args):
+ if args:
+ return 42
+ return None
+
+def test_good_comprehension_checks():
+ [data for data in range(100)]
+ [data for data in range(100) if data]
+ [data for data in range(100) if len(data)]
+ (data for data in range(100) if data)
+ (data for data in range(100) if len(data))
+ {data for data in range(100) if data}
+ {data for data in range(100) if len(data)}
+ {data: 1 for data in range(100) if data}
+ {data: 1 for data in range(100)}