The usual

This commit is contained in:
Guido van Rossum 1997-05-22 20:48:03 +00:00
parent c2d1417615
commit f1e6354548
18 changed files with 244 additions and 496 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)