summaryrefslogtreecommitdiff
path: root/pep8.py
Commit message (Expand)AuthorAgeFilesLines
* Avoid extraneous whitespace around keywords.Rick Harris2012-04-301-2/+26
* Release version 1.0.11.0.1Florent Xicluna2012-04-061-1/+1
* Adjust alignment.Florent Xicluna2012-03-301-4/+4
* Minor regression in the order the directories are walked.Florent Xicluna2012-03-301-1/+2
* Merge pull request #1 from singingwolfboy/masterFlorent Xicluna2012-03-291-16/+9
|\
| * Replace `message` function with `print` function, since it does the same thingDavid Baumgold2012-03-291-16/+9
* | Add changelog entry for previous fix.Florent Xicluna2012-03-301-1/+1
* | Fix W602 checking of 3 argument raises to handle multi-char names, issue #34Brian Elliott2012-03-291-1/+1
|/
* Release version 0.7.0.Florent Xicluna2012-03-261-1/+1
* Correctly select all tests if DEFAULT_IGNORE == '' or False.Florent Xicluna2012-03-261-1/+1
* Change the defaut behaviour to --repeat.Florent Xicluna2012-03-261-2/+4
* whitespace bikeshedding.Florent Xicluna2012-03-261-0/+2
* Add changelog entry for issue #36 and adapt the help message.Florent Xicluna2012-03-261-2/+2
* Merge branch 'topic/max-line-length' of git://github.com/treyhunner/pep8Florent Xicluna2012-03-261-3/+8
|\
| * add max-line-length optionMike Koss2011-09-121-3/+8
* | Merge branch 'master' of git://github.com/slacy/pep8Florent Xicluna2012-03-261-1/+1
|\ \
| * | Use /usr/bin/env python instead of straight /usr/bin/pythonSteve Lacy2011-03-021-1/+1
| |/
* | Fixes for Jython.Florent Xicluna2012-03-261-7/+1
* | Merge branch 'master' of git://github.com/fabioz/pep8Florent Xicluna2012-03-261-2/+7
|\ \
| * | Pre-compiling lambda regexp (Jython has an issue when the re module is import...fabioz2012-02-211-2/+2
| * | Fixed issue when line decoding failed on Jython 2.2.1 (UnicodeDecodeError doe...fabioz2012-02-091-0/+5
| |/
* | Merge fixes for issues #34, #43 and #48.Florent Xicluna2012-03-261-3/+2
* | fix for issue34clayg2012-03-011-1/+2
|/
* Reorganize the test suite in order to check more failures with fewer test files.Florent Xicluna2010-09-111-33/+80
* Cosmetic changesFlorent Xicluna2010-09-111-2/+2
* Ensure that Python3 and Python2 behave the same when parsing the deprecated o...Florent Xicluna2010-09-111-2/+6
* Restore compatibility with Python 2.3 and Python 3Florent Xicluna2010-09-101-6/+6
* Fix E225: accept ``print >>sys.stderr, "..."`` syntax.Florent Xicluna2010-09-101-3/+3
* Fix E501 for lines containing multibyte encoded characters.Florent Xicluna2010-09-081-3/+13
* Fix E221, E222, E223, E224 not detected in some cases. (Issue #16)Florent Xicluna2010-09-081-14/+11
* Fix issue #17: v = dic[a] [b] (E211)Florent Xicluna2010-09-081-1/+3
* Enhance verbose output with -vvv and -vvvv. Remove wrong comment about ident...Florent Xicluna2010-09-081-6/+13
* Revert accidental commit d2a2cc39e901.Florent Xicluna2010-09-081-13/+6
* Enhance verbose output with -vvv and -vvvv. Remove wrong comment about ident...Florent Xicluna2010-09-081-6/+13
* Fix counters.florentx2010-08-301-26/+28
* Now exit code is always 1 if any error or warning is found. (Issue #10)florentx2010-08-291-4/+4
* Merge Maximillian fix for issue #8florentx2010-08-291-3/+3
|\
| * --ingore checkt even with --countMaximillian Dornseif2010-04-141-3/+3
* | Add tests, and changelog entry about W293.florentx2010-08-291-2/+4
* | Merge FBM change for blank lines with spaces (W293).florentx2010-08-291-2/+15
|\ \
| * | Fix an indentation issue.David Thompson2010-06-211-1/+1
| * | Pull the blank line case out into a separate warning (W293).David Thompson2010-06-211-3/+7
| * | Alter the behaviour of W291 (trailing whitespace).David Thompson2010-06-081-2/+11
| |/
* | Fix E301: do not require a blank line before an indented block. (Issue #14)florentx2010-08-291-3/+5
* | Replace find with startswith/endswith.florentx2010-08-291-2/+2
* | .startswith()/.endswith() are faster than .find().Alec Thomas2010-08-291-2/+2
* | Fix false E203 for NumPy slice notation.florentx2010-08-291-2/+2
* | Fix decoding and checking non-UTF8 files in Python 3.florentx2010-03-151-5/+15
* | Fix E225: reject ``True+False`` when running on Python 3.florentx2010-03-151-6/+13
* | Fix an exception when the logical line starts with an operator.florentx2010-03-121-1/+1