summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | Update changelog. Ref #1615.Jason R. Coombs2017-10-281-0/+9
| | | | |
| * | | | Rename unused variable to something codacy recognizes as a non-variable.Jason R. Coombs2017-10-281-1/+1
| | | | |
| * | | | Remove class property and rely entirely on instance property. Move docstring ↵Jason R. Coombs2017-10-281-3/+1
| | | | | | | | | | | | | | | | | | | | to property.
| * | | | Store the status exactly once on the HTTPRedirect. Status can no longer be ↵Jason R. Coombs2017-07-261-1/+5
| | | | | | | | | | | | | | | | | | | | set after the initial construction.
| | * | | Set self.status immediately.Jason R. Coombs2017-07-261-4/+7
| | | | |
| | * | | Update changelogJason R. Coombs2017-07-121-0/+6
| | | | |
| | * | | Use chained comparison.Jason R. Coombs2017-07-121-1/+1
| | | | |
| | * | | Expose the 'default status' returned by an HTTPRedirect as ↵Jason R. Coombs2017-07-122-15/+18
| |/ / / | | | | | | | | | | | | HTTPRedirect.default_status class property.
| | * | Remove unused importJason R. Coombs2017-10-251-1/+0
| | | |
| | * | Update test_signal_handler_unsubscribe to not hard-code the number of lines ↵Jason R. Coombs2017-10-251-3/+5
| | | | | | | | | | | | | | | | back in the log that the message appears.
| | * | Remove unused importJason R. Coombs2017-10-251-1/+0
| | | |
| | * | Remove request timeout support. Fixes #1625.Jason R. Coombs2017-10-254-94/+11
| | | |
| | | * For now inline the implementation until it can be linked. Ref #1673.Jason R. Coombs2017-12-172-4/+62
| | | |
| | | * Use jaraco.collections for code re-use on CaseInsensitiveDict. Fixes #1231.Jason R. Coombs2017-10-283-49/+12
| |_|/ |/| |
* | | Remove long-deprecated legacy 'has_any' methods on mappings.Jason R. Coombs2017-10-284-24/+2
| | |
* | | Only disable QA for E501Jason R. Coombs2017-10-281-1/+1
| | |
* | | Don't fail to remove a non-existent file. Fixes #1540.Jason R. Coombs2017-10-282-3/+4
| | |
* | | Honor E731 linter warningJason R. Coombs2017-10-288-15/+34
| | |
* | | Add comment explaining why warning is ignored.Jason R. Coombs2017-10-281-0/+1
| | |
* | | Rename file to have a recognized extension for content type detection.Jason R. Coombs2017-10-282-1/+1
| | |
* | | Remove exemption for extra long lines. Updated code to conform with standard ↵Jason R. Coombs2017-10-2821-54/+126
| | | | | | | | | | | | 79 character limitation. Fixes #1652.
* | | Bare except clauses are no moreJason R. Coombs2017-10-281-2/+1
| | |
* | | Update commentsJason R. Coombs2017-10-281-3/+4
| | |
* | | Use short-circuits and reindent to allow the single-line invocation of ↵Jason R. Coombs2017-10-281-9/+10
| | | | | | | | | | | | portend.occupied, required by older Pythons.
* | | Trap BaseException in _cpwsgi.AppResponse. Fixes weird interacting test ↵Jason R. Coombs2017-10-281-1/+1
| | | | | | | | | | | | failure in test_3_Deadlocks (but only when other test_states tests run first).
* | | Feed the hobgoblins (delint).Jason R. Coombs2017-10-272-7/+9
| | |
* | | Ignore W503 per https://github.com/PyCQA/pycodestyle/issues/498Jason R. Coombs2017-10-271-1/+1
| | |
* | | Feed the hobgoblins (delint).Jason R. Coombs2017-10-2712-24/+47
| | |
* | | Feed the hobgoblins (delint).Jason R. Coombs2017-10-2713-31/+58
| | |
* | | Disable bare except flake8 checkSviatoslav Sydorenko2017-10-271-1/+2
| | | | | | | | | | | | | | | Such exceptions are there for a while, we need to decide whether we this check is needed
* | | Fix flake8 complaint regarding stupid var nameSviatoslav Sydorenko2017-10-271-3/+3
| | |
* | | Return accidentally missed tests/dist PEP257 ignorSviatoslav Sydorenko2017-10-271-0/+1
| | |
* | | Make PEP257 exclude expression better readableSviatoslav Sydorenko2017-10-271-1/+16
| |/ |/|
* | Migrate pre-commit config to new formatSviatoslav Sydorenko2017-10-252-0/+2
| |
* | Improve pre-commit hooks (PR #1649 by @asottile)Sviatoslav Sydorenko2017-10-238-16/+17
|\ \ | | | | | | | | | | | | * Use alternate config file to avoid sed hack * Fix some of linter complaints * Upgrade linter versions
| * | Use alternate config file to avoid sed hackAnthony Sottile2017-10-212-2/+5
| | |
| * | Upgrade pre-commit hooksAnthony Sottile2017-10-216-14/+12
|/ /
* | Include checks for PEP257-fixed modulesSviatoslav Sydorenko2017-10-211-1/+1
| |
* | Make cherrypy._cptree PEP257-compliantSviatoslav Sydorenko2017-10-211-2/+5
| |
* | Make cherrypy._cpchecker PEP257-compliantSviatoslav Sydorenko2017-10-211-6/+4
| |
* | Make cherrypy._cpwsgi_server PEP257-compliantSviatoslav Sydorenko2017-10-211-3/+6
| |
* | Make cherrypy._cpnative_server PEP257-compliantSviatoslav Sydorenko2017-10-211-1/+4
| |
* | Make cherrypy._cpconfig PEP257-compliantSviatoslav Sydorenko2017-10-211-5/+2
| |
* | Make cherrypy._cpserver PEP257-compliantSviatoslav Sydorenko2017-10-211-3/+5
| |
* | Make cherrypy.scaffold.__init__ PEP257-compliantSviatoslav Sydorenko2017-10-212-1/+5
| |
* | Make cherrypy.lib.__init__ PEP257-compliantSviatoslav Sydorenko2017-10-212-10/+21
| |
* | Make cherrypy._helper PEP257-compliantSviatoslav Sydorenko2017-10-212-10/+9
| |
* | Make cherrypy.__init__ PEP257-compliantSviatoslav Sydorenko2017-10-212-13/+11
| |
* | Make cherrypy.daemon PEP257-compliantSviatoslav Sydorenko2017-10-212-1/+2
| |
* | Make cherrypy.__main__ PEP257-compliantSviatoslav Sydorenko2017-10-212-3/+3
| |