summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Merge pull request #436 from sigmavirus24/pr/409Ian Cordasco2015-09-071-2/+2
|\ \ \ | | | | | | | | Update PR #409
| * | | Use report instead of analyze in the help textIan Cordasco2015-09-071-1/+1
| | | | | | | | | | | | | | | | Closes #409
| * | | Reworded --diff flag help string to improve clarity (which created ↵nixscripter2015-09-071-2/+2
|/ / / | | | | | | | | | misunderstandings in Issue #407)
* | | Merge pull request #419 from sigmavirus24/update-docsIan Cordasco2015-09-075-8/+8
|\ \ \ | | | | | | | | Update all documentation and links to use PyCQA
| * | | Update all documentation and links to use PyCQAIan Cordasco2015-09-075-8/+8
|/ / /
* | | Merge pull request #429 from doismellburning/feature/file-parsing-flexibilityIan Cordasco2015-09-073-4/+82
|\ \ \ | |/ / |/| | Multi-line ignore parsing in config_file
| * | Improved parsing of multiline option values (including trailing commas)Kristian Glass2015-08-221-3/+19
| | |
| * | Test behaviour regarding multi-line ignore parsing in config_fileKristian Glass2015-08-222-1/+63
|/ / | | | | | | | | At time of writing, these tests fail. If this is later fixed, someone may wish to remove this warning!
* | Merge pull request #420 from myint/masterIan Lee2015-07-153-3/+14
|\ \ | | | | | | Support Python 3.5
| * | Generalize deprecation avoidanceSteven Myint2015-07-141-7/+9
| | |
| * | Test on Python 3.5Steven Myint2015-07-141-0/+1
| | |
| * | Support older Python 3Steven Myint2015-07-141-1/+1
| | |
| * | Support Python 3.5Steven Myint2015-07-142-2/+10
| | | | | | | | | | | | | | | | | | | | | This involves fixing a test and avoiding a function deprecated since Python 3.0. https://docs.python.org/dev/library/inspect.html#inspect.getargspec
* | | Merge pull request #421 from sigmavirus24/travis-updatesIan Lee2015-07-141-4/+1
|\ \ \ | |/ / |/| | Remove pypy* from allowed failures
| * | Remove pypy* from allowed failuresIan Cordasco2015-07-141-4/+1
|/ / | | | | | | | | | | | | | | | | The pypy jobs have not failed in a long time. Keeping them in allowed_failures means that if they start failing, no one will notice them. We also start using "sudo: false" since we are not installing anything with apt and this will speed up build times.
* | Merge pull request #417 from myint/patch-1Ian Cordasco2015-07-111-3/+3
|\ \ | | | | | | Point to new GitHub URL
| * | Point to new GitHub URLSteven Myint2015-07-111-3/+3
|/ / | | | | I guess this repository got moved at some point?
* | Merge pull request #415 from sigmavirus24/patch-1Ian Lee2015-07-051-0/+5
|\ \ | | | | | | Add W503 to the error code table in the docs
| * | Add W503 to the error code table in the docsIan Cordasco2015-07-041-0/+5
|/ / | | | | Closes #414
* | Reverted fix for #368 which had unintended repurcussions in flake8 and other ↵Ian Lee2015-03-172-14/+20
| | | | | | | | | | | | | | places. This fix reverts to the parsing of user config (~/.config/pep8), then local directory config files, and finally overrides with cli options as was the behavior back in 1.5.7
* | Updated licensing dates to 2015Ian Lee2015-03-133-2/+3
| |
* | Bump version post releaseIan Lee2015-03-132-1/+4
|/
* Release version 1.6.21.6.2Ian Lee2015-02-152-2/+2
|
* Update changelog for #380Ian Lee2015-02-151-0/+4
|
* Fixed tests from previous commitIan Lee2015-02-151-1/+1
|
* Fixed regression which caused pep8 to not be able to pass in config file; ↵Ian Lee2015-02-151-4/+11
| | | | issue #380
* Bump version numberIan Lee2015-02-141-1/+1
|
* Update changelogIan Lee2015-02-081-0/+9
|
* Merge pull request #305 from yole/break-around-binary-operatorIan Lee2015-02-082-7/+47
|\ | | | | Thanks for the patch!
| * 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-242-3/+42
| |
* | Release version 1.6.11.6.1Ian Lee2015-02-082-2/+2
| |
* | Updated changelogIan Lee2015-02-071-0/+4
| |
* | Fixed #287 -- 'variable is referenced before assignment' errorIan Lee2015-02-071-0/+2
| | | | | | | | Thanks to @dreadatour for the original pull request.
* | Merge pull request #313 from hongqn/e721-noqaIan Lee2015-02-072-3/+3
|\ \ | | | | | | allow use # noqa to disable E721 warning
| * | allow use # noqa to disable E721 warningQiangning Hong2014-08-082-3/+3
| |/ | | | | | | | | | | Sometimes `isinstance()` is not suitable for comparing types. For example, someone may want to make sure an object is exact instance of a type, not instance of its subclasses.
* | Fix undefined variable issue; #377Ian Lee2015-02-072-1/+5
| |
* | Start work on next versionIan Lee2015-02-062-1/+5
| |
* | Release version 1.61.6Ian Lee2015-02-062-3/+3
| |
* | Update changelog; issue #368 / #369issue-368Ian Lee2015-02-051-0/+3
| |
* | 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
| | | | | | | | | | | | Remove the default of ~/.config/pep8, and instead parse that explictly. If a command line option is passed using --config, then it is the only config handled.
* | #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-263-0/+14
|\ \
| * | Update changelog for issue #363issue-363Ian Lee2015-01-121-0/+3
| | |
| * | Add flush method to test support PseudoFile object; issue #363Ian Lee2015-01-121-0/+3
| | |
| * | 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-262-1/+7
| | |
* | | Update docs for configurationIan Lee2014-12-291-3/+3
| | |