[Python-Dev] Re: [Python-checkins] CVS: python/dist/src/Lib UserString.py,1.5,1.6 (original) (raw)
Thomas Wouters thomas@xs4all.net
Fri, 25 Aug 2000 00:53:18 +0200
- Previous message: [Python-Dev] two tests fail
- Next message: [Python-Dev] Re: [Python-checkins] CVS: python/dist/src/Modules pyexpat.c,2.12,2.13
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Thu, Aug 24, 2000 at 02:47:36PM -0700, Peter Schneider-Kamp wrote:
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 testuserstring fail
WTF ? Hmm. I was pretty damned sure I'd fixed that one. I saw it two times, fixed it in two trees at least, but apparently not the one I commited :P I'll get some sleep, soon :P
*************** *** 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
-- Thomas Wouters <thomas@xs4all.net>
Hi! I'm a .signature virus! copy me into your .signature file to help me spread!
- Previous message: [Python-Dev] two tests fail
- Next message: [Python-Dev] Re: [Python-checkins] CVS: python/dist/src/Modules pyexpat.c,2.12,2.13
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]