summaryrefslogtreecommitdiff
path: root/test/input/func_w0611.py
blob: 2c37966997b9f46a5cc8fa8ae43cf21e2df0a760 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""check unused import
"""
__revision__ = 1
import os
import sys

class NonRegr:
    """???"""
    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'