summaryrefslogtreecommitdiff
path: root/pep8.py
Commit message (Expand)AuthorAgeFilesLines
* Check the last line even if it does not end with a NL; issue #286Florent Xicluna2014-05-071-4/+4
* Do not exit when an option in setup.cfg / tox.ini is not recognizedFlorent Xicluna2014-05-051-4/+3
* Update pep8.pylordhellcito2014-04-271-1/+1
* Return error code 1 on broken pipe, and restore compatibility with Python 2.5Florent Xicluna2014-04-181-5/+9
* Handle broken pipe in check_files()Winston Weinert2014-04-181-0/+4
* Release version 1.5.61.5.6Florent Xicluna2014-04-141-1/+1
* Merge checker W292 with checker W391 for better performanceFlorent Xicluna2014-04-141-12/+10
* Switch two linesFlorent Xicluna2014-04-141-1/+1
* Check the last line even if it has not EOL; issue #273Florent Xicluna2014-04-141-3/+8
* Release version 1.5.51.5.5Florent Xicluna2014-04-101-1/+1
* Create set of tokens for comparison; skip comments completely for E22 checksFlorent Xicluna2014-04-091-22/+15
* Fix regression with E22 checks and inline comments; issue #271Florent Xicluna2014-04-091-2/+3
* Release version 1.5.41.5.4Florent Xicluna2014-04-071-1/+1
* Refactor method build_tokens_lineFlorent Xicluna2014-04-061-19/+13
* Fix negative offset with E303 before a multi-line docstring; issue #269Florent Xicluna2014-04-051-8/+10
* Back to developmentFlorent Xicluna2014-04-051-10/+6
* Release version 1.5.31.5.3Florent Xicluna2014-04-041-1/+1
* Fix wrong offset computation when error is on the last char of a physical lin...Florent Xicluna2014-04-041-7/+9
* Tests should pass for the tarball distributed on PyPI; issue 267Florent Xicluna2014-04-041-1/+1
* Release version 1.5.21.5.2Florent Xicluna2014-04-041-1/+1
* Do not allow newline after parameter equal; issue #252Florent Xicluna2014-04-041-0/+2
* Fix caret position when line contains tabsFlorent Xicluna2014-04-031-1/+1
* Report correct line number for E303 with comments; issue #60Florent Xicluna2014-04-031-15/+12
* Fix line number and offset for E125 with multi-line strings; issue #220Florent Xicluna2014-04-031-1/+2
* Refactor the logical line building and checking.Florent Xicluna2014-04-031-11/+8
* Fix line number and offset for multi-line strings; issue #220Florent Xicluna2014-04-031-8/+8
* Fix E501 not detected in comments with Python 2.5Florent Xicluna2014-04-031-1/+10
* Fix false positive E121/E126 with multi-line string; issue #265Florent Xicluna2014-04-031-0/+2
* Review commentFlorent Xicluna2014-04-031-2/+2
* Use the open() context manager, supported since Python 2.5Florent Xicluna2014-03-281-13/+9
* Minor changesFlorent Xicluna2014-03-281-3/+1
* Back to development; review some docstrings in relation with PEP 257.Florent Xicluna2014-03-281-143/+83
* Release version 1.5.11.5.1Florent Xicluna2014-03-271-1/+1
* Fix a crash with E125 on multi-line strings; closes #263Florent Xicluna2014-03-271-1/+2
* Release version 1.51.5Florent Xicluna2014-03-261-1/+1
* Review messages for E713 and E714Florent Xicluna2014-03-261-5/+3
* Report E131 instead of E121 / E126 for unaligned hanging indentFlorent Xicluna2014-03-251-5/+16
* Merge. Allow long lines in docstrings and comments.Florent Xicluna2014-03-251-14/+46
|\
| * Allow long lines in comments too, with similar rules; related to issue #224Florent Xicluna2014-03-231-3/+10
| * Merge branch 'master' of https://github.com/gward/pep8 into gward-masterFlorent Xicluna2014-03-231-14/+44
| |\
| | * Make maybe_check_physical() easier to understand (based on code review)Greg Ward2013-11-171-8/+21
| | * Optionally disable physical line checks inside multiline strings (issue #242)Greg Ward2013-11-081-0/+2
| | * Allow long lines in multiline strings if they cannot be wrapped (issue #224).Greg Ward2013-11-081-1/+8
| | * Fix an incorrect "W391 blank line at EOF"Greg Ward2013-11-081-6/+6
| | * Check physical lines after tokenizing them.Greg Ward2013-11-081-15/+23
* | | Separate Changes and Bug fixes in the changelogFlorent Xicluna2014-03-251-1/+1
* | | Clarify E121 and E126 for hanging indents, and reports all over-indented cont...Florent Xicluna2014-03-251-3/+3
* | | Merge, add E265 for space before block comment; issue #190Florent Xicluna2014-03-251-15/+34
|\ \ \
| * | | Fix tests on Python 2.5Florent Xicluna2013-05-021-0/+2
| * | | Add E265 for space before block comment; issue #190Florent Xicluna2013-05-011-15/+32