summaryrefslogtreecommitdiff
path: root/pyflakes/test/test_return_with_arguments_inside_generator.py
blob: fc1272a936455401078a2a7197bca6c6bf23c313 (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
34

from sys import version_info

from pyflakes import messages as m
from pyflakes.test.harness import TestCase, skipIf


class Test(TestCase):
    @skipIf(version_info >= (3, 3), 'new in Python 3.3')
    def test_return(self):
        self.flakes('''
        class a:
            def b():
                for x in a.c:
                    if x:
                        yield x
                return a
        ''', m.ReturnWithArgsInsideGenerator)

    @skipIf(version_info >= (3, 3), 'new in Python 3.3')
    def test_returnNone(self):
        self.flakes('''
        def a():
            yield 12
            return None
        ''', m.ReturnWithArgsInsideGenerator)

    @skipIf(version_info >= (3, 3), 'new in Python 3.3')
    def test_returnYieldExpression(self):
        self.flakes('''
        def a():
            b = yield a
            return b
        ''', m.ReturnWithArgsInsideGenerator)