Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Switch from nose to pytestpytest | Marc Abramowitz | 2016-03-08 | 7 | -39/+35 |
| | |||||
* | Merged in msabramo/paste/python3_wsgilib_add_close_next (pull request #29) | Marc Abramowitz | 2016-03-08 | 2 | -1/+57 |
|\ | | | | | | | paste.wsgilib.add_close: Add __next__ method | ||||
| * | Make add_close.next() leverage add_close.__next__()python3_wsgilib_add_close_next | Marc Abramowitz | 2016-03-08 | 1 | -1/+1 |
| | | | | | | | | so we avoid logic duplication | ||||
| * | Check paste.wsgilib.add_close._closed | Marc Abramowitz | 2016-03-07 | 1 | -0/+2 |
| | | |||||
| * | Uncomment/cleanup paste.wsgilib.app_close.__next__ | Marc Abramowitz | 2016-03-07 | 1 | -2/+2 |
| | | |||||
| * | Add tests for `add_close` class | Marc Abramowitz | 2016-03-07 | 1 | -0/+50 |
| | | |||||
| * | Merge default to python3_wsgilib_add_close_next | Marc Abramowitz | 2016-03-07 | 1 | -0/+4 |
| |\ | |||||
| | * | paste.wsgilib.add_close: Add __next__ method | Marc Abramowitz | 2016-03-07 | 1 | -0/+4 |
| | | | | | | | | | | | | to support using `add_close` objects as iterators on Python 3. | ||||
| | * | Added tag 2.0.2 for changeset 53f5c2cd7f50 | Marc Abramowitz | 2015-05-11 | 0 | -0/+0 |
| | | | |||||
| | * | Update docs/news.txt for 2.0.22.0.2 | Marc Abramowitz | 2015-05-11 | 1 | -0/+21 |
| | | | |||||
| | * | Don't display invalid error message when socket in use | Marc Abramowitz | 2015-05-11 | 1 | -2/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, when the listening socket was already in use, this error message was displayed: ... File "/private/tmp/n/lib/python2.7/site-packages/Paste-1.7.5.1-py2.7.egg/paste/httpserver.py", line 1106, in server_close self.thread_pool.shutdown(60) AttributeError: 'WSGIThreadPoolServer' object has no attribute 'thread_pool' We prevent this by checking if `self` has a `thread_pool` attribute before trying to reference it. Fixes issue #5 (https://bitbucket.org/ianb/paste/issue/5/invalid-error-message-when-the-socket-is) | ||||
| | * | Merged in aodag/paste-py3/fix-has_key (pull request #25) | Marc Abramowitz | 2015-05-11 | 2 | -2/+2 |
| | |\ | | | | | | | | | | | | | replace ``has_key`` method to ``in`` operator #9 | ||||
| | | * | replace ``has_key`` method to ``in`` operator #9fix-has_key | aodag | 2015-05-02 | 2 | -2/+2 |
| | | | | |||||
| | | * | Fix Python 3 issue in paste/fixture.py | Marc Abramowitz | 2015-04-30 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | by wrapping `map` with `list`. | ||||
| | | * | Merged in msabramo/paste/BB-4 (pull request #22) | Victor Stinner | 2015-04-30 | 0 | -0/+0 |
| | | |\ | | | | | | | | | | | | | | | | Fix improper commas in request headers in wsgi_environ | ||||
| | | | * | set version to 2.0.2 | Victor Stinner | 2015-04-23 | 1 | -7/+1 |
| | | | | | |||||
| | | | * | Added tag 2.0.1 for changeset a0ef0e57e057 | Victor Stinner | 2015-04-23 | 0 | -0/+0 |
| | | | | | |||||
| | | | * | prepare release 2.0.12.0.1 | Victor Stinner | 2015-04-23 | 2 | -3/+4 |
| | | | | | |||||
| | | | * | Revert change on paste.util.quoting.html_quote() | Victor Stinner | 2015-04-23 | 3 | -6/+10 |
| | | | | | | | | | | | | | | | | | | | | | | | | | On Python 2, html_quote(unicode) returns again bytes to restore backward compatibility. | ||||
| | | | * | Update changelog | Victor Stinner | 2015-04-23 | 1 | -1/+15 |
| | | | | | |||||
| | | | * | Fix setup.py for six dependency | Victor Stinner | 2015-04-23 | 2 | -2/+1 |
| | | | | | | | | | | | | | | | | | | | | Move the six dependency from extras_require to install_requires. | ||||
| | | | * | Set version to 2.0.1 | Victor Stinner | 2015-04-22 | 1 | -1/+1 |
| | | | | | |||||
| | | | * | Extract README.rst from setup.py | Victor Stinner | 2015-04-22 | 2 | -97/+113 |
| | | | | | | | | | | | | | | | | | | | | Add links to Paste websites and related projects | ||||
| | | | * | Fix paste.util.html_quote(unicode): don't encode the string to escape it | Victor Stinner | 2015-04-22 | 3 | -25/+30 |
| | | | | | |||||
| | | | * | Fix hash_identifier() on Python 3 | Victor Stinner | 2015-04-22 | 1 | -1/+5 |
| | | | | | | | | | | | | | | | | | | | | Fix paste.exceptions.serial_number_generator.hash_identifier() | ||||
| | | | * | Port proxy to Python 3 | Victor Stinner | 2015-04-22 | 1 | -20/+26 |
| | | | | | | | | | | | | | | | | | | | | Use Message.items() method instead of HTTPMessage.headers attribute. | ||||
| | | | * | Merged in mfrobben/paste (pull request #21) | Victor Stinner | 2015-04-22 | 106 | -8010/+3706 |
| | | | |\ | | | | | | | | | | | | | | | | | | | Fix bad reference to iterator variable | ||||
| | | | | * | Cleanup imports in test_fileapp | Victor Stinner | 2015-04-22 | 1 | -12/+4 |
| | | | | | | |||||
| | | | | * | Fix pyflakes warnings in tests | Victor Stinner | 2015-04-22 | 8 | -18/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Remove unused imports * Remove unused variables | ||||
| | | | | * | Fix pyflakes warnings | Victor Stinner | 2015-04-22 | 7 | -10/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Remove unused variables * Remove unused imports * Remove dead code | ||||
| | | | | * | Fix paste.util.threadedprint.uninstall() | Victor Stinner | 2015-04-22 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rename duplicated uninstall() function to uninstall_stdin() and fix typo in variable name (_oldstin => _oldstdin). | ||||
| | | | | * | Fix loop_pos.__repr__() of paste.util.looper | Victor Stinner | 2015-04-22 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | Use self.pos instead of an unknown pos variable. | ||||
| | | | | * | Get parse_querystring() function directly from the paste.request module, | Victor Stinner | 2015-04-22 | 2 | -3/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | instead of using wsgilib.parse_querystring() alias. | ||||
| | | | | * | Fix paste.debug.fsdiff.Snapshot._ignore_file() | Victor Stinner | 2015-04-22 | 1 | -7/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | Remove a duplicated method, keep the implementation using ignore_wildcards. | ||||
| | | | | * | setup.py: add python3 setup.py bdist_wheel upload | Victor Stinner | 2015-04-22 | 1 | -1/+2 |
| | | | | | | |||||
| | | | | * | Added tag 2.0 for changeset c345eab09517 | Victor Stinner | 2015-04-22 | 0 | -0/+0 |
| | | | | | | |||||
| | | | | * | Fix tag_build for the release 2.02.0 | Victor Stinner | 2015-04-22 | 2 | -1/+2 |
| | | | | | | |||||
| | | | | * | Added tag 2.0 for changeset 158b2a06c8c1 | Victor Stinner | 2015-04-22 | 0 | -0/+0 |
| | | | | | | |||||
| | | | | * | Prepare release 2.0 | Victor Stinner | 2015-04-22 | 2 | -15/+15 |
| | | | | | | |||||
| | | | | * | Add tox.ini to run tests with tox on Python 2.6, 2.7 and 3.4 | Victor Stinner | 2015-04-21 | 5 | -1/+27 |
| | | | | | | | | | | | | | | | | | | | | | | | | * MANIFEST.in: add regen-docs & tox.ini | ||||
| | | | | * | Prepare release 1.7.6 | Victor Stinner | 2015-04-21 | 1 | -1/+7 |
| | | | | | | | | | | | | | | | | | | | | | | | | Start to write a release process in setup.py | ||||
| | | | | * | Fix test_exceptions on Python 3 | Victor Stinner | 2015-04-22 | 3 | -14/+15 |
| | | | | | | |||||
| | | | | * | Fix fixture on Python 3 | Victor Stinner | 2015-04-22 | 1 | -23/+49 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * wsgi.input must be a binary file, not a text file * Fix fixture.TestApp.__str__() on Python 3: decode body from UTF-8 (with xmlcharrefreplace). * Fix fixture.TestResponse.goto() on Python 3: regex must use bytes, not Unicode. * Fix TestApp._check_status() on Python 3 - Decode body from UTF-8 (with xmlcharrefreplace) to format the error message. - Fix TestApp.encode_multipart() on Python 3: HTTP body must be bytes: encode lines to utf8 and use byte string literals. - Fix TestApp.post() on Python 3: default params must be bytes - Fix TestResponse.__repr__() on Python 3 - Fix TestApp on Python 3: encode params values to UTF-8 - Port TestApp._gen_request() to Python 3 | ||||
| | | | | * | Port paste.debug.debugapp to Python 3 | Victor Stinner | 2015-04-22 | 1 | -1/+1 |
| | | | | | | |||||
| | | | | * | Remove UserDict24 | Victor Stinner | 2015-04-22 | 2 | -173/+2 |
| | | | | | | |||||
| | | | | * | Remove subprocess24 | Victor Stinner | 2015-04-22 | 3 | -1160/+2 |
| | | | | | | |||||
| | | | | * | Remove string24 | Victor Stinner | 2015-04-22 | 1 | -531/+0 |
| | | | | | | |||||
| | | | | * | Fix some Python 3 issues in util.template | Victor Stinner | 2015-04-22 | 1 | -4/+4 |
| | | | | | | |||||
| | | | | * | Port url module to Python 3 | Victor Stinner | 2015-04-22 | 1 | -6/+11 |
| | | | | | | |||||
| | | | | * | Port util.dateinterval to Python 3 | Victor Stinner | 2015-04-22 | 1 | -1/+1 |
| | | | | | |