summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* Add line to CHANGES.txtFlorent Xicluna2012-06-101-0/+2
* Only 'options' is a global variable.Florent Xicluna2012-06-101-3/+2
* Optimize the expand_indent helper when code is PEP8 compliant.Florent Xicluna2012-06-101-0/+2
* Fix E125 in pep8.py itself.Florent Xicluna2012-06-101-3/+3
* Merge pull request #74 from samv/masterFlorent Xicluna2012-06-103-7/+91
|\
| * Don't set indent[-1]Sam Vilain2012-06-061-1/+1
| * make multi-line STRING % (foo, bar) workSam Vilain2012-06-062-2/+15
| * Add some more tests for multi-line string continuation indentSam Vilain2012-06-062-0/+17
| * Make E127/E128 stricter about what defines a new levelSam Vilain2012-06-063-14/+21
| * Relax E127/E128 for aligned homogenous tokensSam Vilain2012-06-063-2/+49
|/
* Fix E225 for Python 3. Closes #72.Florent Xicluna2012-06-043-1/+6
* Add codes to all docstrings for find_checks() to selectively ignore checkers.Florent Xicluna2012-06-031-6/+20
* Line too long.Florent Xicluna2012-06-031-2/+3
* Report successive E24 on the same logical line. Closes #71.Florent Xicluna2012-06-031-11/+11
* Fix regression when rewriting E251. Closes #70.Florent Xicluna2012-06-032-1/+3
* More test cases for line length.Florent Xicluna2012-06-032-6/+31
* Don't strip too much for W291 and W293.Florent Xicluna2012-06-031-1/+1
* More robust readlines().Florent Xicluna2012-06-032-22/+18
* Merge pull request #69 from myint/masterFlorent Xicluna2012-06-032-5/+27
|\
| * Add corresponding close() calls for each open()myint2012-06-021-3/+16
| * Fall back if encoding is declared improperlymyint2012-06-021-1/+5
| * Open files with proper encodingmyint2012-06-022-4/+9
* | Rewrite E251 without regex.Florent Xicluna2012-06-031-13/+20
|/
* Fix the test output and the exist code when running the --doctest or the --te...Florent Xicluna2012-06-022-26/+56
* Micro optimization.Florent Xicluna2012-06-021-4/+4
* Add option '--format' to customize output. Closes #23.Florent Xicluna2012-06-023-3/+17
* Enable the checkers E12 in the default configuration.Florent Xicluna2012-06-022-1/+4
* Read local configuration even if multiple args are passed.Florent Xicluna2012-06-021-10/+9
* Fix a crash when too many brackets are closed.Florent Xicluna2012-06-023-1/+13
* Use a feature of optparse for %default in documentation.Florent Xicluna2012-06-021-7/+7
* Fix E502 for embedded backslash. Closes #68.Florent Xicluna2012-06-023-1/+12
* Read user configuration and local configuration. Closes #22.Florent Xicluna2012-06-022-2/+66
|\
| * Change default config file location to ~/.pep8David Pursehouse2011-10-211-2/+2
| * Adding a simple config file systemDavid Reynolds2011-10-211-0/+23
* | Message for E712 might be misleading.Florent Xicluna2012-06-012-3/+4
* | Make E27 checks twice as fast.Florent Xicluna2012-06-014-29/+55
* | Pick tests for E127 from @samv branch.Florent Xicluna2012-06-012-1/+31
* | Release version 1.2.1.2Florent Xicluna2012-06-012-2/+5
* | Don't report failures due to PyPy JIT.Florent Xicluna2012-06-011-0/+3
* | Fix line offset for the testsuite.Florent Xicluna2012-06-011-3/+3
* | Line too long.Florent Xicluna2012-06-011-1/+0
* | Renumber the E12 series for consistency with part of E11 series; shorten the ...Florent Xicluna2012-06-012-71/+67
* | Add doctests for E12; split the testsuite.Florent Xicluna2012-05-313-444/+493
* | Refactor E12 checks, and add a bunch of test cases.Florent Xicluna2012-05-313-97/+339
* | Use a version which passes distutils' StrictVersionSam Vilain2012-05-301-1/+1
* | Chase some false positive indentation errors.Florent Xicluna2012-05-303-11/+60
* | Allow to mix visual and hanging indent (E126 checker)Florent Xicluna2012-05-302-31/+81
* | Fix E502 for backslash embedded in literals, and further refactoring of the n...Florent Xicluna2012-05-292-76/+61
* | Refactor: use 'row' for the line number, and 'line' for the content of the li...Florent Xicluna2012-05-291-128/+119
* | Python 2.4 does not support the ternary operatorFlorent Xicluna2012-05-291-6/+9