diff options
| author | Guido van Rossum <guido@python.org> | 2001-04-15 13:06:04 +0000 | 
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 2001-04-15 13:06:04 +0000 | 
| commit | b8b45eac7118cdfb8b9f87c31718023fe5ed29e1 (patch) | |
| tree | 8d1190c381eaccc9ce2bf91e8139e0f69be650fa | |
| parent | 74cde5bb3eea5187b199454ab275fe7cbb6e69b6 (diff) | |
| download | cpython-git-b8b45eac7118cdfb8b9f87c31718023fe5ed29e1.tar.gz | |
Fix typo in exception name (UnimplementedError should be
NotImplementedError) found by Neil Norwitz's PyChecker.
| -rwxr-xr-x | Lib/smtpd.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/smtpd.py b/Lib/smtpd.py index b5db3b0e09..fffc229519 100755 --- a/Lib/smtpd.py +++ b/Lib/smtpd.py @@ -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):  | 
