summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Allow 'filename*' to override 'filename' per RFC.Jason R. Coombs2018-08-131-1/+1
| | |
| * | * Fix _cpreqbody.Entity to handle Content-Disposition filename* with encodingpawciobiel2018-03-133-11/+41
| | | | | | | | | | | | | | | * Change _cpcompat.unquote_qs to work with unicode on py2 - fix for #1694
| | * Add extra explanation for _cache.delete()Martin van Es2018-06-061-4/+4
| | |
| | * Rewrite comments with some punctuation to make it read more clearly. I still ↵Jason R. Coombs2018-06-061-0/+1
| | | | | | | | | | | | don't understand why deleting the cache is necessary. The previous comment said 'an empty response will be cached', but that seems inconsistent with the 'if body' block.
| | * Rewrite comments with some punctuation to make it read more clearly. I still ↵Jason R. Coombs2018-06-061-5/+7
| | | | | | | | | | | | don't understand why deleting the cache is necessary. The previous comment said 'an empty response will be cached', but that seems inconsistent with the 'if body' block.
| | * Extract function for _flush_body. Use 'consume' to consume an iterator. Use ↵Jason R. Coombs2018-06-062-5/+13
| | | | | | | | | | | | 'iter' to make iterator from iterable.
| | * Fix static file cached 304 responseMartin van Es2018-06-062-4/+15
| |/ |/|
* | Just open the file using io module. Decode as locale.getpreferredencoding ↵Jason R. Coombs2018-05-291-1/+2
| | | | | | | | (default).
* | Construct and assign abs_urls directly, rather than using init/append loop.Jason R. Coombs2018-05-291-7/+7
| |
* | Expand the documentation to indicate that these functions should be avoided.Jason R. Coombs2018-05-291-0/+6
| |
* | Add workaround for pyyaml bugJason R. Coombs2018-05-291-1/+3
| |
* | Fail with HTTP 400 for invalid headersSviatoslav Sydorenko2018-05-282-1/+21
| | | | | | | | | | | | | | | | | | | | Test malformed Accept-Charset quality values. Fixes #1370 Closes #1707 Co-authored-by: Zach Seils (seils) <seils@cisco.com> Co-authored-by: Zach Seils <zachseils@gmail.com>
* | Don't attempt to make None absolute. Fixes #1697.Jason R. Coombs2018-05-281-1/+1
| |
* | Add test capturing failure. Ref #1697.Jason R. Coombs2018-05-281-0/+14
| |
* | Extract module to file mapping as _file_for_module classmethod.Jason R. Coombs2018-05-281-19/+32
| | | | | | | | Avoids condition where zip check always produces an AttributeError in the failure stack even when irrelevant.
* | Use filter instead of if/continue block.Jason R. Coombs2018-05-281-3/+4
| |
* | Whitelist mkdir. Fixes #1713Jason R. Coombs2018-05-281-0/+1
| |
* | Fix linter complaintsSviatoslav Sydorenko2018-05-262-2/+1
| |
* | Fix property settersSviatoslav Sydorenko2018-05-268-16/+16
| |
* | Remove deprecated propertiesSviatoslav Sydorenko2018-05-263-32/+8
| |
* | Upgrade @property decorator syntaxSviatoslav Sydorenko2018-05-269-91/+109
| |
* | Drop unused sys import from toolsSviatoslav Sydorenko2018-05-211-2/+0
| |
* | Replace py3 check with six in toolsSviatoslav Sydorenko2018-05-211-1/+3
| |
* | Drop deprecated basic_auth and digest_authSviatoslav Sydorenko2018-05-214-520/+9
| | | | | | | | | | | | Also remove ``httpauth`` module Resolves #1688
* | Don't try collecting tests in docsv15.0.0Jason R. Coombs2018-05-111-0/+7
| |
* | Need to ignore .eggs also; why didn't this fail on my machine?Jason R. Coombs2018-05-111-1/+1
| |
* | If it's not one lint, it's another.Jason R. Coombs2018-05-111-1/+1
| |
* | The introduction of ./conftest.py seems to have caused 'tests' to be ↵Jason R. Coombs2018-05-111-4/+12
| | | | | | | | prepended to the path. As a result, remove_sys_path_0 no longer worked as expected. Re-write that fixture to accomplish the intended goal.
* | One step forward, two steps back. Try this.Jason R. Coombs2018-05-111-3/+1
| |
* | Add docstring.Jason R. Coombs2018-05-111-0/+5
| |
* | Remove components from webtest no longer presented by cheroot. Fixes #1708.Jason R. Coombs2018-05-112-3/+10
| |
* | Initialize in a function so it's not invoked on importJason R. Coombs2018-05-111-22/+28
| |
* | Remove reference to timeout_monitor, removedJason R. Coombs2018-05-111-1/+0
| |
* | Re-enable doctests. Ref #1708.Jason R. Coombs2018-05-112-1/+5
| |
* | Update GitHub issue templateSviatoslav Sydorenko2018-04-221-1/+1
| |
* | Upgrade GitHub PR templateSviatoslav Sydorenko2018-04-221-1/+24
| |
* | Duplicate store_test_results step in Circle CISviatoslav Sydorenko2018-04-221-0/+4
| |
* | Be more specific about test results dirSviatoslav Sydorenko2018-04-221-2/+2
| |
* | Store test results as artifacts in Circle CISviatoslav Sydorenko2018-04-221-0/+4
| |
* | Rename junit file to results.xmlSviatoslav Sydorenko2018-04-223-3/+3
| |
* | Fix store_test_results for macOS @ Circle CISviatoslav Sydorenko2018-04-221-1/+1
| |
* | Fix Circle CI store_test_results stepSviatoslav Sydorenko2018-04-221-1/+1
| |
* | Enable test result rendering in Circle CISviatoslav Sydorenko2018-04-225-3/+8
| |
* | Update doc about auth methodsSviatoslav Sydorenko2018-04-221-3/+34
| |
* | Support unicode in login/password during HTTP Authv14.2.0Sviatoslav Sydorenko2018-04-227-307/+226
|\ \ | | | | | | | | | Ref: :rfc:`7617`
| * | Add info about v14.2.0 to changelogbugfix/1680-unicode-in-http-authSviatoslav Sydorenko2018-04-221-0/+6
| | |
| * | Add tools.auth_digest.accept_charset to examplesSviatoslav Sydorenko2018-04-222-1/+3
| | |
| * | Add tools.auth_basic.accept_charset to examplesSviatoslav Sydorenko2018-04-222-1/+3
| | |
| * | Reuse repeatable code in test_auth_digestSviatoslav Sydorenko2018-04-221-75/+30
| | |
| * | Partially refactor test_auth_digestSviatoslav Sydorenko2018-04-221-40/+31
| | |