summaryrefslogtreecommitdiff
path: root/tests/input
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-03-09 21:03:12 +0100
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-03-14 19:48:30 +0100
commitf9c45916843996b545c954a7ca958133fe7b1e95 (patch)
tree3721b7516a04926f577f227b0988fc1b4f06e59b /tests/input
parentc41daa7d229823e18ce6106bef85e071d6910be1 (diff)
downloadpylint-git-f9c45916843996b545c954a7ca958133fe7b1e95.tar.gz
Migrate func_w0611.py to new functional tests
Diffstat (limited to 'tests/input')
-rw-r--r--tests/input/func_w0611.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/input/func_w0611.py b/tests/input/func_w0611.py
deleted file mode 100644
index 887787242..000000000
--- a/tests/input/func_w0611.py
+++ /dev/null
@@ -1,25 +0,0 @@
-"""check unused import
-"""
-# pylint: disable=no-absolute-import, useless-object-inheritance
-
-from __future__ import print_function
-
-import os
-import sys
-
-class NonRegr(object):
- """???"""
- def __init__(self):
- print('initialized')
-
- def sys(self):
- """should not get sys from there..."""
- print(self, sys)
-
- def dummy(self, truc):
- """yo"""
- return self, truc
-
- def blop(self):
- """yo"""
- print(self, 'blip')