No need to import exceptions, they are builtins

This commit is contained in:
Neal Norwitz 2005-09-01 00:45:28 +00:00
parent 6203196c7c
commit 4ce69a5b06
3 changed files with 4 additions and 7 deletions

View file

@ -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):