third_party.pylibs.pylint.src/test/input/func_names_imported_from_module.py
2010-11-04 10:20:07 +01:00

29 lines
523 B
Python

#pylint: disable=W0401,W0611
"""check unexistant names imported are reported"""
__revision__ = None
import logilab.common.tutu
from logilab.common import toto
toto.yo()
from logilab.common import modutils
modutils.nonexistant_function()
modutils.another.nonexistant.function()
print logilab.common.modutils.yo
import sys
print >> sys.stdout, 'hello world'
print >> sys.stdoout, 'bye bye world'
import re
re.finditer('*', 'yo')
from rie import *
from re import findiiter, compiile
import os
'SOMEVAR' in os.environ