Changes to make these tests work on the Mac.

This commit is contained in:
Guido van Rossum 1997-05-16 13:51:48 +00:00
parent 9522274205
commit 3f11da0aaf
3 changed files with 4 additions and 4 deletions

View file

@ -48,7 +48,7 @@ print 'case folded search:', cre.search('HELLO WORLD')
print '__members__:', cre.__members__
print 'regs:', cre.regs
print 'last:', cre.last
print 'translate:', `cre.translate`
print 'translate:', len(cre.translate)
print 'givenpat:', cre.givenpat
print 'match with pos:', cre.match('hello world', 7)