Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Merge pull request #1740 from cherrypy/bugfix/1737-session-file-race | Jason R. Coombs | 2018-09-08 | 2 | -32/+30 | |
|\ \ | | | | | | | Bugfix/1737 session file race | |||||
| * | | Remove unused importbugfix/1737-session-file-race | Jason R. Coombs | 2018-09-07 | 1 | -1/+0 | |
| | | | ||||||
| * | | Remove empty branch | Jason R. Coombs | 2018-09-07 | 1 | -9/+8 | |
| | | | ||||||
| * | | In teardown_class, also delete other files that may have been created during ↵ | Jason R. Coombs | 2018-09-07 | 1 | -11/+11 | |
| | | | | | | | | | | | | the tests. Fixes #1737. | |||||
| * | | In StaticTest, use teardown_class to remove files after any server has been ↵ | Jason R. Coombs | 2018-09-07 | 1 | -2/+3 | |
| | | | | | | | | | | | | stopped. Fixes #1737. | |||||
| * | | Leverage path.py for paths in test_sessions | Jason R. Coombs | 2018-09-07 | 1 | -8/+5 | |
| | | | ||||||
| * | | In SessionTest, perform teardown in the classmethod, and only after the ↵ | Jason R. Coombs | 2018-09-07 | 1 | -2/+4 | |
| | | | | | | | | | | | | CPWebCase is torn down. (presumably) Fixes #1737. | |||||
* | | | Mark test_tracebacks as xfailing, as it's failing consistently. | Jason R. Coombs | 2018-09-07 | 1 | -0/+1 | |
| | | | ||||||
* | | | Remove xfail code, no longer relevant on Python 3. Ref #1544. | Jason R. Coombs | 2018-09-07 | 1 | -5/+0 | |
|/ / | ||||||
* | | Rely on Path object for cleaner logic | Jason R. Coombs | 2018-09-07 | 1 | -5/+9 | |
| | | ||||||
* | | Rewrite error log test with pure pytest | Sviatoslav Sydorenko | 2018-09-06 | 1 | -16/+31 | |
| | | | | | | | | Temporary using requests directly | |||||
* | | Fix log marker in test logging | Sviatoslav Sydorenko | 2018-09-06 | 1 | -2/+4 | |
| | | ||||||
* | | Don't convert bytes headers to str | Sviatoslav Sydorenko | 2018-09-05 | 2 | -1/+8 | |
|\ \ | | | | | | | PR #1736 by @tobiashenkel | |||||
| * | | Don't convert bytes headers to str | Tobias Henkel | 2018-09-04 | 2 | -1/+8 | |
| | | | | | | | | | | | | | | | Don't convert bytes header values using str() as str(b'foo') becomes "b'foo'". Instead just leave bytes as is like it was prior to v18.0.0. | |||||
* | | | Move import check to pytest.mark.importorskip | Sviatoslav Sydorenko | 2018-09-04 | 1 | -6/+1 | |
| | | | ||||||
* | | | Revert condition for skipping memcached test | Sviatoslav Sydorenko | 2018-09-04 | 1 | -1/+4 | |
| | | | ||||||
* | | | Add a skip reason to memcached tests | Sviatoslav Sydorenko | 2018-09-04 | 1 | -1/+1 | |
| | | | ||||||
* | | | Convert skipping memcached test to pytest way | Sviatoslav Sydorenko | 2018-09-04 | 1 | -98/+98 | |
| | | | ||||||
* | | | Fix redirect memcached session test | Sviatoslav Sydorenko | 2018-09-04 | 1 | -1/+1 | |
| | | | ||||||
* | | | Fix MemcachedSession import in tests | Sviatoslav Sydorenko | 2018-09-04 | 1 | -1/+3 | |
| | | | ||||||
* | | | Fix MemcachedSession test | Sviatoslav Sydorenko | 2018-09-04 | 1 | -1/+1 | |
| | | | ||||||
* | | | Remove references to threading._* in Python 3.2 and earlier. | Jason R. Coombs | 2018-09-04 | 3 | -17/+4 | |
| | | | ||||||
* | | | Use urllib.parse | Jason R. Coombs | 2018-09-04 | 4 | -9/+5 | |
| | | | ||||||
* | | | Unconditionally define the bytes version of unquote_plus | Jason R. Coombs | 2018-09-04 | 1 | -15/+14 | |
| | | | ||||||
* | | | Move json from _cpcompat to its own module. | Jason R. Coombs | 2018-09-04 | 6 | -27/+34 | |
| | | | ||||||
* | | | Remove _cpcompat.escape_html | Jason R. Coombs | 2018-09-04 | 3 | -36/+3 | |
| | | | ||||||
* | | | Remove future imports | Jason R. Coombs | 2018-09-04 | 1 | -2/+1 | |
|/ / | ||||||
* | | Collapse 'if True' blocks. | Jason R. Coombs | 2018-09-02 | 4 | -62/+59 | |
| | | ||||||
* | | Remove more references to six in doctest | Jason R. Coombs | 2018-09-02 | 1 | -5/+5 | |
| | | ||||||
* | | Remove unused imports | Jason R. Coombs | 2018-09-02 | 2 | -2/+0 | |
| | | ||||||
* | | Remove reliance on contextlib2 | Jason R. Coombs | 2018-09-02 | 1 | -3/+2 | |
| | | ||||||
* | | Remove reliance on six | Jason R. Coombs | 2018-09-02 | 49 | -415/+125 | |
|/ | ||||||
* | Delintv17.4.0 | Jason R. Coombs | 2018-08-19 | 1 | -1/+1 | |
| | ||||||
* | Consolidate prepare_iter behavior | Jason R. Coombs | 2018-08-19 | 2 | -30/+26 | |
| | ||||||
* | Move list-of-unicode check | Jason R. Coombs | 2018-08-19 | 1 | -4/+4 | |
| | ||||||
* | Consolidate header item encoding. | Jason R. Coombs | 2018-08-19 | 1 | -14/+11 | |
| | ||||||
* | Reorder operations | Jason R. Coombs | 2018-08-19 | 1 | -3/+3 | |
| | ||||||
* | Use 'string_types' when encoding headers. | Jason R. Coombs | 2018-08-19 | 1 | -3/+2 | |
| | ||||||
* | Bytes is of no use to the attributes function. | Jason R. Coombs | 2018-08-17 | 1 | -2/+2 | |
| | ||||||
* | There's no attributes in cherrypy.lib, reference it from reprconf. | Jason R. Coombs | 2018-08-17 | 1 | -1/+1 | |
| | ||||||
* | Use any to check values | Jason R. Coombs | 2018-08-17 | 1 | -3/+2 | |
| | ||||||
* | Get consume from top namespace | Jason R. Coombs | 2018-08-17 | 1 | -1/+1 | |
| | ||||||
* | value can't be text anymore | Jason R. Coombs | 2018-08-17 | 1 | -1/+1 | |
| | ||||||
* | Now also on Python 2.7 when setting Response Body, reject Unicode values, ↵ | Jason R. Coombs | 2018-08-17 | 1 | -6/+5 | |
| | | | | same as on Python 3. | |||||
* | self.body is always iterable due to the ResponseBody descriptor. And PY3 ↵ | Jason R. Coombs | 2018-08-17 | 1 | -13/+3 | |
| | | | | will already raise a TypeError if you try to join not bytes, so simplify collapse_body. | |||||
* | read_lines_to_boundary never returns text. | Jason R. Coombs | 2018-08-17 | 1 | -2/+2 | |
| | ||||||
* | Re-use logic from always_iterable | Jason R. Coombs | 2018-08-17 | 1 | -6/+4 | |
| | ||||||
* | Consolidate logic around registering for autoreload. | Jason R. Coombs | 2018-08-17 | 1 | -5/+8 | |
| | ||||||
* | Let Python Syntax handle the TypeError. | Jason R. Coombs | 2018-08-17 | 1 | -6/+1 | |
| | ||||||
* | Handle SIGHUP and SIGTERM in one go | Jason R. Coombs | 2018-08-17 | 1 | -5/+5 | |
| |