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

Peter Schneider-Kamp python-dev@python.org
Thu, 24 Aug 2000 14:47:36 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory slayer.i.sourceforge.net:/tmp/cvs-serv5582

Modified Files:
	UserString.py 
Log Message:

simple typo that makes regression test test_userstring fail



Index: UserString.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/UserString.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** UserString.py	2000/08/24 20:14:09	1.5
--- UserString.py	2000/08/24 21:47:34	1.6
***************
*** 56,60 ****
          elif isinstance(other, StringType) or isinstance(other, UnicodeType):
              self.data += other
!         else
              self.data += str(other)
          return self
--- 56,60 ----
          elif isinstance(other, StringType) or isinstance(other, UnicodeType):
              self.data += other
!         else:
              self.data += str(other)
          return self