diff options
| author | Guido van Rossum <guido@python.org> | 2024-03-12 00:31:49 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-12 00:31:49 (GMT) |
| commit | ba13215eb1ec20b6af10e3fcee7a725bd7a7f83e (patch) | |
| tree | 19615f6a1d8d22a9fe494bcfbf2cfe5bb50bf1e9 /Lib/asyncio/events.py | |
| parent | 2b67fc57f6e97c8389fe970ed232c1ad484113e1 (diff) | |
| download | cpython-ba13215eb1ec20b6af10e3fcee7a725bd7a7f83e.zip cpython-ba13215eb1ec20b6af10e3fcee7a725bd7a7f83e.tar.gz cpython-ba13215eb1ec20b6af10e3fcee7a725bd7a7f83e.tar.bz2 | |
gh-113538: Revert "gh-113538: Add asycio.Server.{close,abort}_clients (#114432)" (#116632)
Revert "gh-113538: Add asycio.Server.{close,abort}_clients (#114432)"
Reason: The new test doesn't always pass:
https://github.com/python/cpython/pull/116423#issuecomment-1989425489
This reverts commit 1d0d49a7e86257ff95b4de0685e6997d7533993c.
Diffstat (limited to 'Lib/asyncio/events.py')
| -rw-r--r-- | Lib/asyncio/events.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Lib/asyncio/events.py b/Lib/asyncio/events.py index be49546..6807493 100644 --- a/Lib/asyncio/events.py +++ b/Lib/asyncio/events.py @@ -175,14 +175,6 @@ class AbstractServer: """Stop serving. This leaves existing connections open.""" raise NotImplementedError - def close_clients(self): - """Close all active connections.""" - raise NotImplementedError - - def abort_clients(self): - """Close all active connections immediately.""" - raise NotImplementedError - def get_loop(self): """Get the event loop the Server object is attached to.""" raise NotImplementedError |
