blob: 99e70ff6e0c7bd893a4246b0daa2f2a6489a6c2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
"""Regression test for unused-module.
Reported in https://bitbucket.org/logilab/pylint/issue/78/
"""
from sys import path
path += ["stuff"]
def func():
"""A function"""
other = 1
return len(other)
|