File tree Expand file tree Collapse file tree 4 files changed +6
-7
lines changed Expand file tree Collapse file tree 4 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ Bug fixes
73
73
74
74
* The new :mod: `asyncio ` and :mod: `threading ` implementations of servers don't
75
75
start the connection handler anymore when ``process_request `` or
76
- ``process_response `` returns a HTTP response.
76
+ ``process_response `` returns an HTTP response.
77
77
78
78
13.0.1
79
79
------
Original file line number Diff line number Diff line change @@ -161,10 +161,9 @@ Client
161
161
| Perform HTTP Digest Authentication | ❌ | ❌ | ❌ | ❌ |
162
162
| (`#784 `_) | | | | |
163
163
+------------------------------------+--------+--------+--------+--------+
164
- | Connect via a HTTP proxy (`#364 `_) | ❌ | ❌ | — | ❌ |
164
+ | Connect via HTTP proxy (`#364 `_) | ❌ | ❌ | — | ❌ |
165
165
+------------------------------------+--------+--------+--------+--------+
166
- | Connect via a SOCKS5 proxy | ❌ | ❌ | — | ❌ |
167
- | (`#475 `_) | | | | |
166
+ | Connect via SOCKS5 proxy (`#475 `_) | ❌ | ❌ | — | ❌ |
168
167
+------------------------------------+--------+--------+--------+--------+
169
168
170
169
.. _#364 : https://github.com/python-websockets/websockets/issues/364
@@ -179,7 +178,7 @@ There is no way to control compression of outgoing frames on a per-frame basis
179
178
180
179
.. _#538 : https://github.com/python-websockets/websockets/issues/538
181
180
182
- The server doesn't check the Host header and doesn't respond with a HTTP 400 Bad
181
+ The server doesn't check the Host header and doesn't respond with HTTP 400 Bad
183
182
Request if it is missing or invalid (`#1246 `).
184
183
185
184
.. _#1246 : https://github.com/python-websockets/websockets/issues/1246
Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ async def handshake(
203
203
# self.protocol.handshake_exc is always set when the connection is lost
204
204
# before receiving a request, when the request cannot be parsed, when
205
205
# the handshake encounters an error, or when process_request or
206
- # process_response sends a HTTP response that rejects the handshake.
206
+ # process_response sends an HTTP response that rejects the handshake.
207
207
208
208
if self .protocol .handshake_exc is not None :
209
209
raise self .protocol .handshake_exc
Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ def handshake(
168
168
# self.protocol.handshake_exc is always set when the connection is lost
169
169
# before receiving a request, when the request cannot be parsed, when
170
170
# the handshake encounters an error, or when process_request or
171
- # process_response sends a HTTP response that rejects the handshake.
171
+ # process_response sends an HTTP response that rejects the handshake.
172
172
173
173
if self .protocol .handshake_exc is not None :
174
174
raise self .protocol .handshake_exc
You can’t perform that action at this time.
0 commit comments