[Python-checkins] CVS: python/dist/src/Lib smtpd.py,1.4,1.5

Guido van Rossum gvanrossum@users.sourceforge.net
Sun, 15 Apr 2001 06:06:06 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv1779

Modified Files:
	smtpd.py 
Log Message:
Fix typo in exception name (UnimplementedError should be
NotImplementedError) found by Neil Norwitz's PyChecker.


Index: smtpd.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/smtpd.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** smtpd.py	2001/03/02 06:42:34	1.4
--- smtpd.py	2001/04/15 13:06:04	1.5
***************
*** 39,43 ****
  # smtpd.  A number of classes are provided:
  #
! #   SMTPServer - the base class for the backend.  Raises an UnimplementedError
  #   if you try to use it.
  #
--- 39,43 ----
  # smtpd.  A number of classes are provided:
  #
! #   SMTPServer - the base class for the backend.  Raises NotImplementedError
  #   if you try to use it.
  #
***************
*** 310,314 ****
  
          """
!         raise UnimplementedError
  
  
--- 310,314 ----
  
          """
!         raise NotImplementedError