diff options
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 |