Merge branch 'master' into asgi-refactor-attempt

This commit is contained in:
Adam Hopkins
2019-05-27 21:03:23 +03:00
committed by GitHub
13 changed files with 256 additions and 282 deletions

View File

@@ -2,6 +2,6 @@ from sanic.app import Sanic
from sanic.blueprints import Blueprint
__version__ = "19.03.1"
__version__ = "19.6.0"
__all__ = ["Sanic", "Blueprint"]

View File

@@ -443,8 +443,12 @@ class Sanic:
):
"""Decorate a function to be registered as a websocket route
:param uri: path of the URL
:param host: Host IP or FQDN details
:param strict_slashes: If the API endpoint needs to terminate
with a "/" or not
:param subprotocols: optional list of str with supported subprotocols
:param host:
:param name: A unique name assigned to the URL so that it can
be used with :func:`url_for`
:return: decorated function
"""
self.enable_websocket()