tptimer/env/lib/python2.7/site-packages/pylint/test/functional/invalid_name.py

32 lines
615 B
Python

""" Tests for invalid-name checker. """
# pylint: disable=unused-import, no-absolute-import, wrong-import-position
AAA = 24
try:
import collections
except ImportError:
collections = None
aaa = 42 # [invalid-name]
try:
import time
except ValueError:
time = None # [invalid-name]
try:
from sys import argv, executable as python
except ImportError:
argv = 42
python = 24
def test():
""" Shouldn't emit an invalid-name here. """
try:
import re
except ImportError:
re = None
return re
def a(): # [invalid-name]
"""yo"""