summaryrefslogtreecommitdiff
path: root/tests/functional/a/async_functions.py
blob: 2f2252de81bf039fba9f6d33f43a37d447cd1dde (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
"""Check that Python 3.5's async functions are properly analyzed by Pylint."""
# pylint: disable=missing-docstring,invalid-name,too-few-public-methods
# pylint: disable=using-constant-test, useless-object-inheritance

async def next(): # [redefined-builtin]
    pass

async def some_function(arg1, arg2): # [unused-argument]
    await arg1


class OtherClass(object):

    @staticmethod
    def test():
        return 42


class Class(object):

    async def some_method(self):
        super(OtherClass, self).test() # [bad-super-call]


# +1: [too-many-arguments,too-many-return-statements, too-many-branches]
async def complex_function(this, function, has, more, arguments, than,
                           one, _, should, have):
    if 1:
        return this
    if 1:
        return function
    if 1:
        return has
    if 1:
        return more
    if 1:
        return arguments
    if 1:
        return than
    try:
        return one
    finally:
        pass
    if 2:
        return should
    while True:
        pass
    if 1:
        return have
    if 2:
        return function
    if 3:
        pass


# +1: [duplicate-argument-name, duplicate-argument-name, dangerous-default-value]
async def func(a, a, b=[]):
    return a, b


# +1: [empty-docstring, blacklisted-name]
async def foo():
    ""