Go to the source code of this file.
Namespaces | |
namespace | roslint::pep8 |
Variables | |
string | roslint::pep8::__version__ = '1.4.7a0' |
tuple | roslint::pep8.ARITHMETIC_OP = frozenset(['**', '*', '/', '//', '+', '-']) |
list | roslint::pep8.BENCHMARK_KEYS = ['directories', 'files', 'logical lines', 'physical lines'] |
tuple | roslint::pep8.DEFAULT_CONFIG = os.path.expanduser(r'~\.pep8') |
string | roslint::pep8.DEFAULT_EXCLUDE = '.svn,CVS,.bzr,.hg,.git,__pycache__' |
string | roslint::pep8.DEFAULT_IGNORE = 'E123,E226,E24' |
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.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*,\s*\w+') |
tuple | roslint::pep8.SINGLETONS = frozenset(['False', 'None', 'True']) |
tuple | roslint::pep8.SKIP_TOKENS |
tuple | roslint::pep8.TESTSUITE_PATH = os.path.join(os.path.dirname(__file__), 'testsuite') |
tuple | roslint::pep8.UNARY_OPERATORS = frozenset(['>>', '**', '*', '+', '-']) |
tuple | roslint::pep8.WHITESPACE = frozenset(' \t') |
tuple | roslint::pep8.WS_NEEDED_OPERATORS |
tuple | roslint::pep8.WS_OPTIONAL_OPERATORS = ARITHMETIC_OP.union(['^', '&', '|', '<<', '>>', '%']) |