summaryrefslogtreecommitdiff
path: root/pep8.py
Commit message (Expand)AuthorAgeFilesLines
* Update all documentation and links to use PyCQAIan Cordasco2015-09-071-1/+1
* Improved parsing of multiline option values (including trailing commas)Kristian Glass2015-08-221-3/+19
* Generalize deprecation avoidanceSteven Myint2015-07-141-7/+9
* Support older Python 3Steven Myint2015-07-141-1/+1
* Support Python 3.5Steven Myint2015-07-141-2/+7
* Reverted fix for #368 which had unintended repurcussions in flake8 and other ...Ian Lee2015-03-171-14/+14
* Updated licensing dates to 2015Ian Lee2015-03-131-1/+1
* Bump version post releaseIan Lee2015-03-131-1/+1
* Release version 1.6.21.6.2Ian Lee2015-02-151-1/+1
* Fixed tests from previous commitIan Lee2015-02-151-1/+1
* Fixed regression which caused pep8 to not be able to pass in config file; iss...Ian Lee2015-02-151-4/+11
* Bump version numberIan Lee2015-02-141-1/+1
* Merge pull request #305 from yole/break-around-binary-operatorIan Lee2015-02-081-4/+44
|\
| * Fix violations of new rule in pep8.py. #ep14boatDmitry Jemerov2014-07-241-8/+9
| * Report W503 for line breaks before binary operators; issue #197. #ep14boatDmitry Jemerov2014-07-241-0/+39
* | Release version 1.6.11.6.1Ian Lee2015-02-081-1/+1
* | Fixed #287 -- 'variable is referenced before assignment' errorIan Lee2015-02-071-0/+2
* | Merge pull request #313 from hongqn/e721-noqaIan Lee2015-02-071-2/+2
|\ \
| * | allow use # noqa to disable E721 warningQiangning Hong2014-08-081-2/+2
| |/
* | Fix undefined variable issue; #377Ian Lee2015-02-071-1/+2
* | Start work on next versionIan Lee2015-02-061-1/+1
* | Release version 1.61.6Ian Lee2015-02-061-1/+1
* | Update configuration documentation; issue #368 / #369Ian Lee2015-02-051-1/+9
* | Update the ordering of configs parsed; issue #368 / #369Ian Lee2015-02-051-19/+21
* | #368 don't search the direcotry tree if config was defined with --configJason Killen2015-02-011-9/+10
* | Merge branch 'issue-363' into masterIan Lee2015-01-261-0/+8
|\ \
| * | Reduce calls to sys.stdout.flush() from 3 to 1; issue #363Ian Lee2015-01-121-9/+8
| * | sys.stdout.flush() to avoid broken line.INADA Naoki2014-12-271-0/+9
* | | Allow backslash to end a line if within inline comment; issue #374Ian Lee2015-01-261-1/+5
* | | Only an annotated function if in the first layer of parensIan Lee2014-12-291-2/+2
* | | Update tests for issue #357Ian Lee2014-12-291-1/+3
* | | Allow spaces around equals sign of an annotated function definition parameter...Ian Lee2014-12-291-1/+9
|/ /
* | Merge pull request #360 from jcrocholl/issue-316Ian Lee2014-12-221-1/+1
|\ \
| * | Update DEFAULT_IGNORE to add E121 & E126 per discussion in issues #256 #316Ian Lee2014-12-171-1/+1
* | | Specify the default ignore list in the help options.Ian Lee2014-12-221-1/+2
* | | Update E402 error message emittedIan Lee2014-12-201-1/+1
* | | Allow try/except/else/finally keywords intermixed with imports. #304Ian Lee2014-12-201-6/+9
* | | Do not skip physical checks if the newline is escaped; issue #319issue319Florent Xicluna2014-12-181-7/+5
* | | Merge pull request #354 from jcrocholl/feature292Ian Lee2014-12-181-1/+1
|\ \ \ | |/ / |/| |
| * | Do not enforce whitespaces around ** operator; issue #292feature292Florent Xicluna2014-12-161-1/+1
* | | Merge branch fixing issues #330 and #336Florent Xicluna2014-12-171-11/+7
|\ \ \
| * | | Fix false positive E713; issue #330issue336Florent Xicluna2014-12-161-1/+1
| * | | Fix false positive E711/E712; issue #336Florent Xicluna2014-12-161-10/+6
| |/ /
* | | This appears to fix #323Ian Cordasco2014-12-171-1/+1
|/ /
* | Catch import errors thrown by os.path.expanduser(); issue #297Ian Lee2014-12-161-5/+9
* | Fix definition of isidentifier in Python 2Florent Xicluna2014-12-161-1/+1
* | Fix too long line introducing E501 errorIan Lee2014-12-151-1/+2
* | Replace the IDENTIFIER_REGEX with the isidentifier functionFlorent Xicluna2014-12-161-5/+5
* | Merge pull request #312 from sigmavirus24/bug/311Florent Xicluna2014-12-161-1/+4
|\ \
| * | Update fix for E731Ian Cordasco2014-08-081-2/+2