Skip to content

Commit 566ab1d

Browse files
committed
The new asyncio implementation has reached parity.
1 parent 6b2f060 commit 566ab1d

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

docs/howto/upgrade.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ respectively.
3131

3232
The next steps are:
3333

34-
1. Deprecating it once the new implementation reaches feature parity.
34+
1. Deprecating it once the new implementation is considered sufficiently
35+
robust.
3536
2. Maintaining it for five years per the :ref:`backwards-compatibility
3637
policy <backwards-compatibility policy>`.
3738
3. Removing it. This is expected to happen around 2030.

docs/index.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ with a focus on correctness, simplicity, robustness, and performance.
2626

2727
.. _WebSocket: https://developer.mozilla.org/en-US/docs/Web/API/WebSockets_API
2828

29-
It supports several network I/O and control flow paradigms:
29+
It supports several network I/O and control flow paradigms.
3030

3131
1. The primary implementation builds upon :mod:`asyncio`, Python's standard
3232
asynchronous I/O framework. It provides an elegant coroutine-based API. It's
@@ -44,10 +44,10 @@ It supports several network I/O and control flow paradigms:
4444
the Sans-I/O implementation. It adds a few features that were impossible
4545
to implement within the original design.
4646

47-
The new implementation will become the default as soon as it reaches
48-
feature parity. If you're using the historical implementation, you should
49-
:doc:`ugrade to the new implementation <howto/upgrade>`. It's usually
50-
straightforward.
47+
The new implementation provides all features of the historical
48+
implementation, and a few more. If you're using the historical
49+
implementation, you should :doc:`ugrade to the new implementation
50+
<howto/upgrade>`. It's usually straightforward.
5151

5252
2. The :mod:`threading` implementation is a good alternative for clients,
5353
especially if you aren't familiar with :mod:`asyncio`. It may also be used

0 commit comments

Comments
 (0)