Go to the source code of this file.
Namespaces | |
namespace | roslint::pep8 |
Variables | |
string | roslint::pep8.__version__ = '1.6.2' |
tuple | roslint::pep8.ARITHMETIC_OP = frozenset(['**', '*', '/', '//', '+', '-']) |
list | roslint::pep8.BENCHMARK_KEYS = ['directories', 'files', 'logical lines', 'physical lines'] |
string | roslint::pep8.DEFAULT_EXCLUDE = '.svn,CVS,.bzr,.hg,.git,__pycache__,.tox' |
string | roslint::pep8.DEFAULT_IGNORE = 'E121,E123,E126,E226,E24,E704' |
tuple | roslint::pep8.ERRORCODE_REGEX = re.compile(r'\b[A-Z]\d{3}\b') |
tuple | roslint::pep8.INDENT_REGEX = re.compile(r'([ \t]*)') |
tuple | roslint::pep8.KEYWORDS = frozenset(keyword.kwlist + ['print']) |
int | roslint::pep8.MAX_LINE_LENGTH = 79 |
tuple | roslint::pep8.NEWLINE = frozenset([tokenize.NL, tokenize.NEWLINE]) |
tuple | roslint::pep8.PROJECT_CONFIG = ('setup.cfg', 'tox.ini', '.pep8') |
int | roslint::pep8.PyCF_ONLY_AST = 1024 |
tuple | roslint::pep8.RAISE_COMMA_REGEX = re.compile(r'raise\s+\w+\s*,') |
dictionary | roslint::pep8.REPORT_FORMAT |
tuple | roslint::pep8.RERAISE_COMMA_REGEX = re.compile(r'raise\s+\w+\s*,.*,\s*\w+\s*$') |
tuple | roslint::pep8.SINGLETONS = frozenset(['False', 'None', 'True']) |
tuple | roslint::pep8.SKIP_COMMENTS = SKIP_TOKENS.union([tokenize.COMMENT, tokenize.ERRORTOKEN]) |
tuple | roslint::pep8.SKIP_TOKENS = NEWLINE.union([tokenize.INDENT, tokenize.DEDENT]) |
tuple | roslint::pep8.TESTSUITE_PATH = os.path.join(os.path.dirname(__file__), 'testsuite') |
tuple | roslint::pep8.UNARY_OPERATORS = frozenset(['>>', '**', '*', '+', '-']) |
tuple | roslint::pep8.USER_CONFIG = os.path.expanduser(r'~\.pep8') |
tuple | roslint::pep8.WHITESPACE = frozenset(' \t') |
tuple | roslint::pep8.WS_NEEDED_OPERATORS |
tuple | roslint::pep8.WS_OPTIONAL_OPERATORS = ARITHMETIC_OP.union(['^', '&', '|', '<<', '>>', '%']) |