diff options
Diffstat (limited to 'Lib/asyncore.py')
-rw-r--r-- | Lib/asyncore.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/asyncore.py b/Lib/asyncore.py index a2387a1..886c845 100644 --- a/Lib/asyncore.py +++ b/Lib/asyncore.py @@ -46,7 +46,6 @@ many of the difficult problems for you, making the task of building sophisticated high-performance network servers and clients a snap. """ -import exceptions import select import socket import sys @@ -61,7 +60,7 @@ try: except NameError: socket_map = {} -class ExitNow(exceptions.Exception): +class ExitNow(Exception): pass def read(obj): |