]> git.ipfire.org Git - thirdparty/tornado.git/log
thirdparty/tornado.git
6 years agoBump version of twisted to pick up security fix 2687/head
Ben Darnell [Sun, 23 Jun 2019 22:40:37 +0000 (18:40 -0400)] 
Bump version of twisted to pick up security fix

6 years agoMerge pull request #2681 from encukou/gen-ignore-cancel
Ben Darnell [Sat, 22 Jun 2019 13:36:43 +0000 (09:36 -0400)] 
Merge pull request #2681 from encukou/gen-ignore-cancel

gen.with_timeout: Don't log CancelledError after timeout

6 years agoFix ReST syntax 2681/head
Petr Viktorin [Fri, 21 Jun 2019 11:52:04 +0000 (13:52 +0200)] 
Fix ReST syntax

6 years agogen.with_timeout: Don't log CancelledError after timeout
Petr Viktorin [Wed, 19 Jun 2019 16:09:17 +0000 (18:09 +0200)] 
gen.with_timeout: Don't log CancelledError after timeout

See also: commit a237a995a1d54ad6e07c1ecdf5103ff8f45073b5

6 years agomypy: Enable no_implicit_optional
Robin Roth [Mon, 17 Jun 2019 00:21:13 +0000 (02:21 +0200)] 
mypy: Enable no_implicit_optional

"Implicit-optional" mode is on by default, but that default is intended to change in the indefinite future (python/peps#689, python/typing#275). Go ahead and change to the future explicit use of Optional.

6 years agoMerge pull request #2679 from ploxiln/curl_no_decompress
Ben Darnell [Sun, 16 Jun 2019 14:06:57 +0000 (10:06 -0400)] 
Merge pull request #2679 from ploxiln/curl_no_decompress

curl_httpclient: fix disabled decompress_response

6 years agotests: run test_gzip for curl_httpclient also 2679/head
Pierce Lopez [Fri, 14 Jun 2019 03:00:06 +0000 (23:00 -0400)] 
tests: run test_gzip for curl_httpclient also

move simple_httpclient test_gzip to the shared httpclient tests,
to test the decompress_response option for curl_httpclient as well

6 years agocurl_httpclient: fix disabled decompress_response
Pierce Lopez [Wed, 12 Jun 2019 19:34:02 +0000 (15:34 -0400)] 
curl_httpclient: fix disabled decompress_response

by setting None (NULL) instead of "none" for ENCODING

reported by Andrey Oparin <andrey@edsd.com>

6 years agoiostream: check that stream is open before trying to read (#2670)
Zachary Sailer [Sun, 9 Jun 2019 21:15:31 +0000 (14:15 -0700)] 
iostream: check that stream is open before trying to read (#2670)

6 years agoMerge pull request #2673 from ploxiln/docs_build_quickfix
Ben Darnell [Sun, 9 Jun 2019 21:11:13 +0000 (17:11 -0400)] 
Merge pull request #2673 from ploxiln/docs_build_quickfix

docs: conflict between sphinx-2.1, sphinxcontrib-asyncio

6 years agotests: allow failure on python nightly 2673/head
Pierce Lopez [Sat, 8 Jun 2019 19:10:26 +0000 (15:10 -0400)] 
tests: allow failure on python nightly

seems to be due to a bunch of asyncio.exceptions.CancelledError

6 years agoRevert "docs: remove sphinxcontrib-asyncio"
Pierce Lopez [Sat, 8 Jun 2019 19:10:12 +0000 (15:10 -0400)] 
Revert "docs: remove sphinxcontrib-asyncio"

This reverts commit 71494a4db76b3ae458e5757d741bdd1aac255640.

6 years agodocs: remove sphinxcontrib-asyncio
Pierce Lopez [Sat, 8 Jun 2019 19:02:57 +0000 (15:02 -0400)] 
docs: remove sphinxcontrib-asyncio

no longer needed since Sphinx-2.1 (and effectively conflicts with it)

6 years agodocs: build with sphinx < 2.1
Pierce Lopez [Sat, 8 Jun 2019 18:44:11 +0000 (14:44 -0400)] 
docs: build with sphinx < 2.1

sphinx 2.1 adds an ":async:" option for py:method:: and py:function::
and it does not seem to interact well with sphinxcontrib-asyncio

6 years agoMerge pull request #2653 from bdarnell/twisted-install
Ben Darnell [Sun, 5 May 2019 17:34:29 +0000 (13:34 -0400)] 
Merge pull request #2653 from bdarnell/twisted-install

twisted: Restore the install() function

6 years agoMerge pull request #2654 from bdarnell/deps
Ben Darnell [Sun, 5 May 2019 17:34:19 +0000 (13:34 -0400)] 
Merge pull request #2654 from bdarnell/deps

Bump dependency versions, including mypy

6 years agotwisted: Restore the install() function 2653/head
Ben Darnell [Sun, 5 May 2019 15:50:34 +0000 (11:50 -0400)] 
twisted: Restore the install() function

This function had more usage than I was aware of and we can preserve
the old behavior by making it an alias for asyncioreactor.install.

Fixes #2636

6 years agodeps: Bump mypy to 0.701 2654/head
Ben Darnell [Sun, 5 May 2019 17:05:34 +0000 (13:05 -0400)] 
deps: Bump mypy to 0.701

6 years agomaint: Bump maintainer requirements.txt versions
Ben Darnell [Sun, 5 May 2019 16:39:37 +0000 (12:39 -0400)] 
maint: Bump maintainer requirements.txt versions

Drop autopep8, add sphinxcontrib-asyncio

6 years agoMerge pull request #2646 from m-burst/patch-1
Ben Darnell [Sat, 4 May 2019 18:24:05 +0000 (14:24 -0400)] 
Merge pull request #2646 from m-burst/patch-1

Speedup headers parsing

6 years agoSpeedup headers parsing 2646/head
Mikhail Burshteyn [Sat, 4 May 2019 08:16:18 +0000 (11:16 +0300)] 
Speedup headers parsing

Replace `_CRLF_RE.split(headers)` with a simple `headers.split('\n')` with an additional check for `'\r'` in each line.
Add benchmark to measure performance impact of the change.
The benchmark results are as follows:
* split only: ~3x faster on CPython, 14-18x faster on PyPy
* full headers parse: ~1.3x faster on CPython, ~3-4.5x faster on PyPy

6 years agoMerge pull request #2649 from javabrett/2648-LogFormatter-CRITICAL-color
Ben Darnell [Mon, 29 Apr 2019 00:06:05 +0000 (20:06 -0400)] 
Merge pull request #2649 from javabrett/2648-LogFormatter-CRITICAL-color

Added color for logging.CRITICAL = 5 (Magenta).

6 years agoMerge pull request #2650 from bdarnell/deprecation38
Ben Darnell [Sun, 28 Apr 2019 23:41:38 +0000 (19:41 -0400)] 
Merge pull request #2650 from bdarnell/deprecation38

test: Silence a deprecation warning in py38+pycurl

6 years agotest: Silence a deprecation warning in py38+pycurl 2650/head
Ben Darnell [Sun, 28 Apr 2019 23:31:52 +0000 (19:31 -0400)] 
test: Silence a deprecation warning in py38+pycurl

6 years agoMerge pull request #2644 from Swixx/request-handler-get-accept-kwargs
Ben Darnell [Sun, 28 Apr 2019 23:31:22 +0000 (19:31 -0400)] 
Merge pull request #2644 from Swixx/request-handler-get-accept-kwargs

Allow RequestHandler.get to accept **kwargs.

6 years agoAdded color for logging.CRITICAL = 5 (Magenta). 2649/head
Brett Randall [Wed, 24 Apr 2019 03:36:37 +0000 (13:36 +1000)] 
Added color for logging.CRITICAL = 5 (Magenta).

Fixed #2648.

6 years agoAllow RequestHandler.get to accept **kwargs. 2644/head
Adam Sawicki [Mon, 22 Apr 2019 13:51:01 +0000 (09:51 -0400)] 
Allow RequestHandler.get to accept **kwargs.

6 years agoMerge pull request #2631 from bdarnell/docs
Ben Darnell [Sat, 23 Mar 2019 19:42:57 +0000 (15:42 -0400)] 
Merge pull request #2631 from bdarnell/docs

Misc docs updates

6 years agotwisted: Remove outdated comments 2631/head
Ben Darnell [Sat, 23 Mar 2019 18:02:21 +0000 (14:02 -0400)] 
twisted: Remove outdated comments

6 years agodocs: Clarify platform support and add not-on-windows notes
Ben Darnell [Sat, 23 Mar 2019 17:57:41 +0000 (13:57 -0400)] 
docs: Clarify platform support and add not-on-windows notes

We also picked up solaris /dev/poll support with the move to asyncio.

See #2622

6 years agoRelease notes for 6.0.2
Ben Darnell [Sat, 23 Mar 2019 16:18:20 +0000 (12:18 -0400)] 
Release notes for 6.0.2

6 years agoRelease notes for 6.0.1
Ben Darnell [Sun, 3 Mar 2019 16:50:04 +0000 (11:50 -0500)] 
Release notes for 6.0.1

6 years agoMerge pull request #2629 from bdarnell/httpresponse-no-body
Ben Darnell [Sat, 23 Mar 2019 15:38:23 +0000 (11:38 -0400)] 
Merge pull request #2629 from bdarnell/httpresponse-no-body

httpclient: HTTPResponse.body returns empty string instead of raising

6 years agohttpclient: HTTPResponse.body returns empty string instead of raising 2629/head
Ben Darnell [Sat, 23 Mar 2019 15:11:18 +0000 (11:11 -0400)] 
httpclient: HTTPResponse.body returns empty string instead of raising

In tornado 5, HTTPResponse.body would return None if there was no body
buffer (which included errors like timeouts and socket errors, but not
HTTP errors like 404). In tornado 6 this was changed to never return
None (to make it easier to work with type annotations) and raise an
error instead. This turned out to be disruptive, so change it back to
returning a value without raising (but now it's an empty byte string
instead of None).

Fixes #2626

6 years agoMerge pull request #2613 from bdarnell/ws-nodelay
Ben Darnell [Sun, 10 Mar 2019 20:57:11 +0000 (16:57 -0400)] 
Merge pull request #2613 from bdarnell/ws-nodelay

websocket: Fix set_nodelay

6 years agowebsocket: Fix set_nodelay 2613/head
Ben Darnell [Sun, 3 Mar 2019 18:51:15 +0000 (13:51 -0500)] 
websocket: Fix set_nodelay

This method was untested and broken in 6.0.0.

Fixes #2611

6 years agoMerge pull request #2614 from mivade/docs-twisted-version
Ben Darnell [Tue, 5 Mar 2019 00:34:47 +0000 (19:34 -0500)] 
Merge pull request #2614 from mivade/docs-twisted-version

Remove twisted version comment in module docstring

6 years agoRemove twisted version comment in module docstring 2614/head
Michael V. DePalatis [Mon, 4 Mar 2019 22:25:11 +0000 (15:25 -0700)] 
Remove twisted version comment in module docstring

Let the documentation in `TwistedResolver` specify the minimum
version.

6 years agoMerge pull request #2612 from bdarnell/download-script
Ben Darnell [Sun, 3 Mar 2019 18:45:57 +0000 (13:45 -0500)] 
Merge pull request #2612 from bdarnell/download-script

Add script to download wheels from appveyor

6 years agoAdd script to download wheels from appveyor 2612/head
Ben Darnell [Sun, 3 Mar 2019 18:37:39 +0000 (13:37 -0500)] 
Add script to download wheels from appveyor

6 years agoMerge pull request #2606 from ploxiln/travis_update_xenial
Ben Darnell [Sun, 3 Mar 2019 16:48:26 +0000 (11:48 -0500)] 
Merge pull request #2606 from ploxiln/travis_update_xenial

travis-ci tests: always use dist xenial

6 years agoMerge pull request #2609 from fchapoton/patch-1
Ben Darnell [Sun, 3 Mar 2019 16:07:41 +0000 (11:07 -0500)] 
Merge pull request #2609 from fchapoton/patch-1

remove duplicate import of gettext

6 years agoremove duplicate import of gettext 2609/head
Frédéric Chapoton [Sun, 3 Mar 2019 10:54:48 +0000 (11:54 +0100)] 
remove duplicate import of gettext

6 years agotravis-ci tests: always use dist xenial 2606/head
Pierce Lopez [Fri, 1 Mar 2019 20:22:14 +0000 (15:22 -0500)] 
travis-ci tests: always use dist xenial

Travis-CI Trusty Container-based environment was available
between July, 2017 and December, 2018.
https://docs.travis-ci.com/user/reference/overview/#deprecated-virtualization-environments

6 years agoMerge pull request #2605 from bdarnell/python-352
Ben Darnell [Fri, 1 Mar 2019 21:17:52 +0000 (16:17 -0500)] 
Merge pull request #2605 from bdarnell/python-352

Fix importability on python 3.5.2

6 years agoFix importability on python 3.5.2 2605/head
Ben Darnell [Fri, 1 Mar 2019 20:03:31 +0000 (15:03 -0500)] 
Fix importability on python 3.5.2

The "provisional" typing module in 3.5.2 is kind of broken/incomplete
so we need to use more forward references to avoid confusing it. The
significance of this version in particular is that it was the one
included in ubuntu 16.04.

Fixes #2604

6 years agoMerge pull request #2603 from bdarnell/version-bump
Ben Darnell [Fri, 1 Mar 2019 16:04:38 +0000 (11:04 -0500)] 
Merge pull request #2603 from bdarnell/version-bump

Bump master branch to 6.1.dev1

6 years agoBump master branch to 6.1.dev1 2603/head
Ben Darnell [Fri, 1 Mar 2019 15:40:25 +0000 (10:40 -0500)] 
Bump master branch to 6.1.dev1

6 years agoMerge pull request #2602 from bdarnell/version-6.0 v6.0.0
Ben Darnell [Fri, 1 Mar 2019 15:11:52 +0000 (10:11 -0500)] 
Merge pull request #2602 from bdarnell/version-6.0

Set version to 6.0

6 years agoSet version to 6.0 2602/head
Ben Darnell [Fri, 1 Mar 2019 14:55:59 +0000 (09:55 -0500)] 
Set version to 6.0

6 years agoMerge pull request #2588 from bdarnell/6.0b1 v6.0.0b1
Ben Darnell [Sun, 10 Feb 2019 23:08:24 +0000 (18:08 -0500)] 
Merge pull request #2588 from bdarnell/6.0b1

Set version to 6.0b1

6 years agoSet version to 6.0b1 2588/head
Ben Darnell [Sun, 10 Feb 2019 22:30:08 +0000 (17:30 -0500)] 
Set version to 6.0b1

6 years agoMerge pull request #2587 from bdarnell/opt
Ben Darnell [Sat, 9 Feb 2019 21:57:04 +0000 (16:57 -0500)] 
Merge pull request #2587 from bdarnell/opt

ioloop: Micro-optimize IOLoop.add_future

6 years agoMerge pull request #2586 from sadielbartholomew/minor-docs-improvements
Ben Darnell [Sat, 9 Feb 2019 18:11:54 +0000 (13:11 -0500)] 
Merge pull request #2586 from sadielbartholomew/minor-docs-improvements

docs: assorted minor e.g. formatting improvements

6 years agoMerge pull request #2580 from bdarnell/remove-log
Ben Darnell [Sat, 9 Feb 2019 17:03:39 +0000 (12:03 -0500)] 
Merge pull request #2580 from bdarnell/remove-log

httputil: Remove a noisy log line

6 years agoMerge pull request #2581 from bdarnell/websocket-open-catch
Ben Darnell [Sat, 9 Feb 2019 17:02:32 +0000 (12:02 -0500)] 
Merge pull request #2581 from bdarnell/websocket-open-catch

websocket: Catch errors in async open() correctly

6 years agoMinor formatting & grammatical etc. edits to docs 2586/head
Sadie Bartholomew [Sat, 9 Feb 2019 00:35:55 +0000 (00:35 +0000)] 
Minor formatting & grammatical etc. edits to docs

6 years agoioloop: Micro-optimize IOLoop.add_future 2587/head
Ben Darnell [Sun, 3 Feb 2019 23:01:53 +0000 (18:01 -0500)] 
ioloop: Micro-optimize IOLoop.add_future

Asyncio Futures always schedule their callbacks on a future iteration
of the IOLoop, so routing the callbacks through IOLoop.add_callback
again was redundant and causing unnecessary delays in callback
execution.

6 years agowebsocket: Catch errors in async open() correctly 2581/head
Ben Darnell [Sat, 2 Feb 2019 18:44:56 +0000 (13:44 -0500)] 
websocket: Catch errors in async open() correctly

Previously if open() was a coroutine and raised an error, the
connection would be left open.

Fixes #2570

6 years agohttputil: Downgrade a noisy log line 2580/head
Ben Darnell [Sat, 2 Feb 2019 17:41:03 +0000 (12:41 -0500)] 
httputil: Downgrade a noisy log line

Only complain about unsupported content encodings if it's a
content-type we'd otherwise try to parse.

Fixes #2578

6 years agoMerge pull request #2566 from BoboTiG/fix-resource-leaks
Ben Darnell [Mon, 21 Jan 2019 12:46:14 +0000 (07:46 -0500)] 
Merge pull request #2566 from BoboTiG/fix-resource-leaks

Fix ResourceWarning: unclosed file

6 years agoFix ResourceWarning: unclosed file 2566/head
Mickaël Schoentgen [Sat, 5 Jan 2019 21:15:01 +0000 (22:15 +0100)] 
Fix ResourceWarning: unclosed file

Signed-off-by: Mickaël Schoentgen <contact@tiger-222.fr>
6 years agoMerge pull request #2565 from bdarnell/docs-6.0a1
Ben Darnell [Wed, 2 Jan 2019 03:51:21 +0000 (22:51 -0500)] 
Merge pull request #2565 from bdarnell/docs-6.0a1

Release notes for 6.0a1

6 years agoinit: set version to 6.0a1 2565/head
Ben Darnell [Wed, 2 Jan 2019 03:44:33 +0000 (22:44 -0500)] 
init: set version to 6.0a1

6 years agosetup: Don't repeat version number in setup.py
Ben Darnell [Wed, 2 Jan 2019 03:43:10 +0000 (22:43 -0500)] 
setup: Don't repeat version number in setup.py

6 years agodocs: More 6.0 release notes
Ben Darnell [Wed, 2 Jan 2019 03:33:36 +0000 (22:33 -0500)] 
docs: More 6.0 release notes

6 years agoFirst part of 6.0 release notes: note all deprecated removals
Ben Darnell [Tue, 1 Jan 2019 21:16:27 +0000 (16:16 -0500)] 
First part of 6.0 release notes: note all deprecated removals

6 years agodocs: Update homepage for 6.0
Ben Darnell [Tue, 1 Jan 2019 21:07:24 +0000 (16:07 -0500)] 
docs: Update homepage for 6.0

6 years agoMerge pull request #2440 from bdarnell/validate-redirect
Ben Darnell [Tue, 1 Jan 2019 18:02:51 +0000 (13:02 -0500)] 
Merge pull request #2440 from bdarnell/validate-redirect

httpclient: Validate redirect location header and method

6 years agosimple_httpclient: Only convert POST requests to GETs on redirect 2440/head
Ben Darnell [Tue, 1 Jan 2019 17:55:58 +0000 (12:55 -0500)] 
simple_httpclient: Only convert POST requests to GETs on redirect

Convert POST to GET on 301 in addition to 302 and 303.

6 years agohttp1connection: Fix a bug with redirects and chunked requests
Ben Darnell [Tue, 1 Jan 2019 17:50:07 +0000 (12:50 -0500)] 
http1connection: Fix a bug with redirects and chunked requests

After a redirect, the chunked-encoding header is already set and would
not be detected correctly. This affects empty bodies with
allow_nonstandard_methods and any use of body_producer.

6 years agoRevert "Revert "_HTTPConnection: check location on _should_follow_redirect() and...
Ben Darnell [Wed, 11 Jul 2018 02:32:57 +0000 (22:32 -0400)] 
Revert "Revert "_HTTPConnection: check location on _should_follow_redirect() and retain safe request when following redirects (#2409)""

This reverts commit dda77f2ca3365bd031a0c56dd19c8ed781a0695a.

6 years agoMerge pull request #2564 from bdarnell/queue-warning
Ben Darnell [Tue, 1 Jan 2019 15:38:12 +0000 (10:38 -0500)] 
Merge pull request #2564 from bdarnell/queue-warning

queues: Add a note to Queue.get about difference from stdlib

6 years agoqueues: Add a note to Queue.get about difference from stdlib 2564/head
Ben Darnell [Tue, 1 Jan 2019 15:29:22 +0000 (10:29 -0500)] 
queues: Add a note to Queue.get about difference from stdlib

Tornado's interpretation of the timeout argument differs from the
stdlib's queue.

Fixes #2370

6 years agoMerge pull request #2563 from bdarnell/docs-update
Ben Darnell [Sun, 30 Dec 2018 20:27:03 +0000 (15:27 -0500)] 
Merge pull request #2563 from bdarnell/docs-update

docs: Various updates

6 years agoconcurrent: Update docs 2563/head
Ben Darnell [Sun, 30 Dec 2018 19:55:14 +0000 (14:55 -0500)] 
concurrent: Update docs

6 years agoauth: Update docs
Ben Darnell [Sun, 30 Dec 2018 19:49:15 +0000 (14:49 -0500)] 
auth: Update docs

6 years agoqueues: Update docs
Ben Darnell [Sun, 30 Dec 2018 19:43:04 +0000 (14:43 -0500)] 
queues: Update docs

6 years agolocks: Update docs
Ben Darnell [Sun, 30 Dec 2018 19:03:06 +0000 (14:03 -0500)] 
locks: Update docs

6 years agogen: Update docs
Ben Darnell [Sun, 30 Dec 2018 18:35:34 +0000 (13:35 -0500)] 
gen: Update docs

6 years agoiostream: Update docs
Ben Darnell [Sun, 30 Dec 2018 18:16:50 +0000 (13:16 -0500)] 
iostream: Update docs

6 years agoioloop: Update docs
Ben Darnell [Sun, 30 Dec 2018 18:12:51 +0000 (13:12 -0500)] 
ioloop: Update docs

6 years agohttpclient: Update docs
Ben Darnell [Sun, 30 Dec 2018 17:42:42 +0000 (12:42 -0500)] 
httpclient: Update docs

6 years agohttpserver: Update docs
Ben Darnell [Sun, 30 Dec 2018 17:35:20 +0000 (12:35 -0500)] 
httpserver: Update docs

6 years agodocs: Add sphinxcontrib-asyncio
Ben Darnell [Sun, 30 Dec 2018 17:34:53 +0000 (12:34 -0500)] 
docs: Add sphinxcontrib-asyncio

This adds a "coroutine" marker to native coroutines

6 years agowebsocket: Change some Future type annotations to Awaitables
Ben Darnell [Sun, 30 Dec 2018 17:10:20 +0000 (12:10 -0500)] 
websocket: Change some Future type annotations to Awaitables

This conforms with usage elsewhere, that methods returning None use
Futures (self-starting in case the result is not awaited) and others
use Awaitable (reserving the option to use more efficient native
coroutines).

6 years agoescape: Update docs
Ben Darnell [Sun, 30 Dec 2018 17:05:49 +0000 (12:05 -0500)] 
escape: Update docs

Replace to_basestring with an alias for to_unicode, since the two are
equivalent on py3.

6 years agoweb: Update docs
Ben Darnell [Sun, 30 Dec 2018 16:48:43 +0000 (11:48 -0500)] 
web: Update docs

6 years agoMerge pull request #2562 from bdarnell/docs-update
Ben Darnell [Sun, 30 Dec 2018 01:08:08 +0000 (20:08 -0500)] 
Merge pull request #2562 from bdarnell/docs-update

docs: Minor updates

6 years agodocs: Remove year from copyright variable 2562/head
Ben Darnell [Sun, 30 Dec 2018 00:59:20 +0000 (19:59 -0500)] 
docs: Remove year from copyright variable

Computing this dynamically is wrong and it doesn't seem worth the
trouble to maintain manually.

Closes #2258
Closes #2259

6 years agodocs: Use python 3.7 via conda for readthedocs builds
Ben Darnell [Sun, 30 Dec 2018 00:57:39 +0000 (19:57 -0500)] 
docs: Use python 3.7 via conda for readthedocs builds

The typing module in python 3.5 has problems with some type
annotations so we need to build with 3.7. RTD doesn't yet support py37
natively but we can get it with conda following an example at
https://github.com/rtfd/readthedocs-docker-images/pull/73

6 years agodocs: Blacken conf.py
Ben Darnell [Sun, 30 Dec 2018 00:55:27 +0000 (19:55 -0500)] 
docs: Blacken conf.py

6 years agodocs: Upgrade sphinx to 1.8
Ben Darnell [Sun, 30 Dec 2018 00:54:51 +0000 (19:54 -0500)] 
docs: Upgrade sphinx to 1.8

The bug that kept us on 1.7 was fixed in 1.8.2.

6 years agoMerge pull request #2561 from bdarnell/contextvars-test
Ben Darnell [Sat, 29 Dec 2018 19:23:20 +0000 (14:23 -0500)] 
Merge pull request #2561 from bdarnell/contextvars-test

gen_test: Verify that contextvars work as expected

6 years agogen_test: Verify that contextvars work as expected 2561/head
Ben Darnell [Sat, 29 Dec 2018 19:06:44 +0000 (14:06 -0500)] 
gen_test: Verify that contextvars work as expected

6 years agoMerge pull request #2560 from bdarnell/websocket-cleanup
Ben Darnell [Sat, 29 Dec 2018 03:28:45 +0000 (22:28 -0500)] 
Merge pull request #2560 from bdarnell/websocket-cleanup

websocket: Convert to native coroutines, refactor

6 years agowebsocket: Convert legacy coroutines to native 2560/head
Ben Darnell [Mon, 24 Dec 2018 18:03:18 +0000 (13:03 -0500)] 
websocket: Convert legacy coroutines to native

6 years agowebsocket: Make WSH.get a coroutine
Ben Darnell [Mon, 24 Dec 2018 16:57:33 +0000 (11:57 -0500)] 
websocket: Make WSH.get a coroutine

This is necessary to convert accept_connection to native coroutines -
the handshake no longer completes within a single IOLoop iteration
with this change due to coroutine scheduling.

This has the side effect of keeping the HTTP1Connection open for the
lifetime of the websocket connection. That's not great for memory, but
might help streamline close handling. Either way, it'll be refactored
in a future change.

6 years agowebsocket: Narrow the websocket handler interface
Ben Darnell [Sun, 21 Oct 2018 19:13:56 +0000 (15:13 -0400)] 
websocket: Narrow the websocket handler interface

Pass close arguments via a new method instead of setting attributes.
Extract a "params" struct.

6 years agowebsocket: Merge close detection into receive_frame_loop
Ben Darnell [Sun, 21 Oct 2018 18:26:43 +0000 (14:26 -0400)] 
websocket: Merge close detection into receive_frame_loop

This avoids races between message handling and the close callback.