[Python-checkins] python/dist/src/Lib unittest.py,1.18,1.19

jhylton@users.sourceforge.net jhylton@users.sourceforge.net
Tue, 13 Aug 2002 13:43:48 -0700


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

Modified Files:
	unittest.py 
Log Message:
Add a missing call to _strclass().


Index: unittest.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/unittest.py,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** unittest.py	9 Aug 2002 09:46:23 -0000	1.18
--- unittest.py	13 Aug 2002 20:43:46 -0000	1.19
***************
*** 193,197 ****
  
      def __str__(self):
!         return "%s (%s)" % (self.__testMethodName, self.__class__)
  
      def __repr__(self):
--- 193,197 ----
  
      def __str__(self):
!         return "%s (%s)" % (self.__testMethodName, _strclass(self.__class__))
  
      def __repr__(self):