blob: e3ea9469b01cf0118226a0f989a1463af20ec895 [file] [log] [blame]
# pylint: disable=wildcard-import,unused-import,no-absolute-import,invalid-name,import-error,
# pylint: disable=bare-except,broad-except,wrong-import-order,ungrouped-imports,wrong-import-position
"""check nonexistent names imported are reported"""
from __future__ import print_function
import collections.tutu # [no-name-in-module]
from collections import toto # [no-name-in-module]
toto.yo()
from xml.etree import ElementTree
ElementTree.nonexistant_function() # [no-member]
ElementTree.another.nonexistant.function() # [no-member]
import sys
print(sys.stdout, 'hello world')
print(sys.stdoout, 'bye bye world') # [no-member]
import re
re.finditer('*', 'yo')
from rie import *
from re import findiiter, compiile # [no-name-in-module,no-name-in-module]
import os
'SOMEVAR' in os.environ # [pointless-statement]
try:
from collections import something
except ImportError:
something = None
try:
from collections import anything # [no-name-in-module]
except ValueError:
anything = None
try:
import collections.missing
except ImportError:
pass
try:
import collections.indeed_missing # [no-name-in-module]
except ValueError:
pass
try:
import collections.emit # [no-name-in-module]
except Exception:
pass
try:
import collections.emit1
except ImportError:
pass
try:
if something:
import collections.emit2 # [no-name-in-module]
except Exception:
pass
from .no_self_use import Super
from .no_self_use import lala # [no-name-in-module]
from .no_self_use.bla import lala1 # [no-name-in-module]