Fix typo in exception name (UnimplementedError should be

NotImplementedError) found by Neil Norwitz's PyChecker.
This commit is contained in:
Guido van Rossum 2001-04-15 13:06:04 +00:00
parent 74cde5bb3e
commit b8b45eac71
1 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ Version: %(__version__)s
# has a hierarchy of classes which implement the backend functionality for the
# smtpd. A number of classes are provided:
#
# SMTPServer - the base class for the backend. Raises an UnimplementedError
# SMTPServer - the base class for the backend. Raises NotImplementedError
# if you try to use it.
#
# DebuggingServer - simply prints each message it receives on stdout.
@ -309,7 +309,7 @@ class SMTPServer(asyncore.dispatcher):
otherwise it returns the desired response string in RFC 821 format.
"""
raise UnimplementedError
raise NotImplementedError
class DebuggingServer(SMTPServer):