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