]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
websocket: Remove some obsolete comments 3247/head
authorBen Darnell <ben@bendarnell.com>
Sat, 8 Apr 2023 18:29:18 +0000 (18:29 +0000)
committerBen Darnell <ben@bendarnell.com>
Sat, 8 Apr 2023 18:29:18 +0000 (18:29 +0000)
Old browser versions that do not support websockets have long since
faded from use.

tornado/websocket.py

index 6c3315c9878edbebfe6c7231f2236db565d75bd1..b3ca07739aec1d854c391334e3ef03043424b2eb 100644 (file)
@@ -1,16 +1,11 @@
 """Implementation of the WebSocket protocol.
 
 `WebSockets <http://dev.w3.org/html5/websockets/>`_ allow for bidirectional
-communication between the browser and server.
-
-WebSockets are supported in the current versions of all major browsers,
-although older versions that do not support WebSockets are still in use
-(refer to http://caniuse.com/websockets for details).
+communication between the browser and server. WebSockets are supported in the
+current versions of all major browsers.
 
 This module implements the final version of the WebSocket protocol as
-defined in `RFC 6455 <http://tools.ietf.org/html/rfc6455>`_.  Certain
-browser versions (notably Safari 5.x) implemented an earlier draft of
-the protocol (known as "draft 76") and are not compatible with this module.
+defined in `RFC 6455 <http://tools.ietf.org/html/rfc6455>`_.
 
 .. versionchanged:: 4.0
    Removed support for the draft 76 protocol version.