summaryrefslogtreecommitdiff
path: root/tests/regrtest_data/fail_on.py
blob: 6f22e5013f03397fe1267452d04b316bf64a02ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
"""
    Pylint score:  -1.67
"""
import nonexistent
# pylint: disable=broad-except


def loop():
    count = 0
    for _ in range(5):
        count += 1
    print(count)