summaryrefslogtreecommitdiff
path: root/test/input/func_noerror_defined_and_used_on_same_line.py
blob: a6a869fedfe827990d124568b02056715c962ea9 (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
26
27
28
29
30
31
32
33
#pylint: disable=C0111,C0321
"""pylint complains about 'index' being used before definition"""
from __future__ import with_statement

__revision__ = None

print [index
       for index in range(10)]

print((index
       for index in range(10)))

FILTER_FUNC = lambda x: not x

def func(xxx): return xxx

def func2(xxx): return xxx + func2(1)

import sys; print sys.exc_info( )

for i in range(10): print i

j = 4; LAMB = lambda x: x+j

FUNC4 = lambda a, b : a != b
FUNC3 = lambda (a, b) : a != b

# test http://www.logilab.org/ticket/6954:

with open('f') as f: print(f.read())

with open('f') as f, open(f.read()) as g:
    print g.read()