summaryrefslogtreecommitdiff
path: root/test/input/func_w0611.py
blob: 57e72380ff0a0be9682be2d5884edfccc889a364 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
"""check unused import
"""
# pylint: disable=print-statement

__revision__ = 1

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'