Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | Remove pypy* from allowed failures | Ian Cordasco | 2015-07-14 | 1 | -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-1 | Ian Cordasco | 2015-07-11 | 1 | -3/+3 | |
|\ \ | | | | | | | Point to new GitHub URL | |||||
| * | | Point to new GitHub URL | Steven Myint | 2015-07-11 | 1 | -3/+3 | |
|/ / | | | | | I guess this repository got moved at some point? | |||||
* | | Merge pull request #415 from sigmavirus24/patch-1 | Ian Lee | 2015-07-05 | 1 | -0/+5 | |
|\ \ | | | | | | | Add W503 to the error code table in the docs | |||||
| * | | Add W503 to the error code table in the docs | Ian Cordasco | 2015-07-04 | 1 | -0/+5 | |
|/ / | | | | | Closes #414 | |||||
* | | Reverted fix for #368 which had unintended repurcussions in flake8 and other ↵ | Ian Lee | 2015-03-17 | 2 | -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 2015 | Ian Lee | 2015-03-13 | 3 | -2/+3 | |
| | | ||||||
* | | Bump version post release | Ian Lee | 2015-03-13 | 2 | -1/+4 | |
|/ | ||||||
* | Release version 1.6.21.6.2 | Ian Lee | 2015-02-15 | 2 | -2/+2 | |
| | ||||||
* | Update changelog for #380 | Ian Lee | 2015-02-15 | 1 | -0/+4 | |
| | ||||||
* | Fixed tests from previous commit | Ian Lee | 2015-02-15 | 1 | -1/+1 | |
| | ||||||
* | Fixed regression which caused pep8 to not be able to pass in config file; ↵ | Ian Lee | 2015-02-15 | 1 | -4/+11 | |
| | | | | issue #380 | |||||
* | Bump version number | Ian Lee | 2015-02-14 | 1 | -1/+1 | |
| | ||||||
* | Update changelog | Ian Lee | 2015-02-08 | 1 | -0/+9 | |
| | ||||||
* | Merge pull request #305 from yole/break-around-binary-operator | Ian Lee | 2015-02-08 | 2 | -7/+47 | |
|\ | | | | | Thanks for the patch! | |||||
| * | Fix violations of new rule in pep8.py. #ep14boat | Dmitry Jemerov | 2014-07-24 | 1 | -8/+9 | |
| | | ||||||
| * | Report W503 for line breaks before binary operators; issue #197. #ep14boat | Dmitry Jemerov | 2014-07-24 | 2 | -3/+42 | |
| | | ||||||
* | | Release version 1.6.11.6.1 | Ian Lee | 2015-02-08 | 2 | -2/+2 | |
| | | ||||||
* | | Updated changelog | Ian Lee | 2015-02-07 | 1 | -0/+4 | |
| | | ||||||
* | | Fixed #287 -- 'variable is referenced before assignment' error | Ian Lee | 2015-02-07 | 1 | -0/+2 | |
| | | | | | | | | Thanks to @dreadatour for the original pull request. | |||||
* | | Merge pull request #313 from hongqn/e721-noqa | Ian Lee | 2015-02-07 | 2 | -3/+3 | |
|\ \ | | | | | | | allow use # noqa to disable E721 warning | |||||
| * | | allow use # noqa to disable E721 warning | Qiangning Hong | 2014-08-08 | 2 | -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; #377 | Ian Lee | 2015-02-07 | 2 | -1/+5 | |
| | | ||||||
* | | Start work on next version | Ian Lee | 2015-02-06 | 2 | -1/+5 | |
| | | ||||||
* | | Release version 1.61.6 | Ian Lee | 2015-02-06 | 2 | -3/+3 | |
| | | ||||||
* | | Update changelog; issue #368 / #369issue-368 | Ian Lee | 2015-02-05 | 1 | -0/+3 | |
| | | ||||||
* | | Update configuration documentation; issue #368 / #369 | Ian Lee | 2015-02-05 | 1 | -1/+9 | |
| | | ||||||
* | | Update the ordering of configs parsed; issue #368 / #369 | Ian Lee | 2015-02-05 | 1 | -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 --config | Jason Killen | 2015-02-01 | 1 | -9/+10 | |
| | | ||||||
* | | Merge branch 'issue-363' into master | Ian Lee | 2015-01-26 | 3 | -0/+14 | |
|\ \ | ||||||
| * | | Update changelog for issue #363issue-363 | Ian Lee | 2015-01-12 | 1 | -0/+3 | |
| | | | ||||||
| * | | Add flush method to test support PseudoFile object; issue #363 | Ian Lee | 2015-01-12 | 1 | -0/+3 | |
| | | | ||||||
| * | | Reduce calls to sys.stdout.flush() from 3 to 1; issue #363 | Ian Lee | 2015-01-12 | 1 | -9/+8 | |
| | | | ||||||
| * | | sys.stdout.flush() to avoid broken line. | INADA Naoki | 2014-12-27 | 1 | -0/+9 | |
| | | | ||||||
* | | | Allow backslash to end a line if within inline comment; issue #374 | Ian Lee | 2015-01-26 | 2 | -1/+7 | |
| | | | ||||||
* | | | Update docs for configuration | Ian Lee | 2014-12-29 | 1 | -3/+3 | |
| | | | ||||||
* | | | Merge branch 'issue-315' | Ian Lee | 2014-12-29 | 1 | -2/+11 | |
|\ \ \ | ||||||
| * | | | Update documentation to match config file location change in last commit. | Simon Kennedy | 2014-12-29 | 1 | -2/+11 | |
|/ / / | ||||||
* | | | Merge pull request #361 from jcrocholl/issue-357 | Ian Lee | 2014-12-29 | 3 | -1/+18 | |
|\ \ \ | |/ / |/| | | Allow spaces around equals sign of an annotated function definition | |||||
| * | | Only an annotated function if in the first layer of parens | Ian Lee | 2014-12-29 | 1 | -2/+2 | |
| | | | ||||||
| * | | Update tests for issue #357 | Ian Lee | 2014-12-29 | 2 | -1/+8 | |
| | | | ||||||
| * | | Allow spaces around equals sign of an annotated function definition ↵ | Ian Lee | 2014-12-29 | 2 | -1/+11 | |
|/ / | | | | | | | parameter; issue #357 | |||||
* | | Merge pull request #360 from jcrocholl/issue-316 | Ian Lee | 2014-12-22 | 4 | -11/+16 | |
|\ \ | | | | | | | Add E121 and E126 to the DEFAULT_IGNORE list | |||||
| * | | Add entry to changelog.issue-316 | Ian Lee | 2014-12-18 | 1 | -0/+2 | |
| | | | ||||||
| * | | Update documentation to reflect changes to default; issues #356 #316 | Ian Lee | 2014-12-18 | 1 | -9/+9 | |
| | | | ||||||
| * | | Update DEFAULT_IGNORE to add E121 & E126 per discussion in issues #256 #316 | Ian Lee | 2014-12-17 | 2 | -2/+5 | |
| | | | ||||||
* | | | Specify the default ignore list in the help options. | Ian Lee | 2014-12-22 | 1 | -1/+2 | |
| | | | ||||||
* | | | Merge branch 'issue-304' | Ian Lee | 2014-12-20 | 2 | -7/+35 | |
|\ \ \ | ||||||
| * | | | Add more test cases for E402; issue #304 | Ian Lee | 2014-12-20 | 1 | -0/+25 | |
| | | | | ||||||
| * | | | Update E402 error message emitted | Ian Lee | 2014-12-20 | 1 | -1/+1 | |
| | | | |