> Your problem is easily explained however: the second argument to
> p.findall() should be an offset, not a flag set. (You are confusing
> re.findall() and p.findall().)
I filed a doc bug for this:
http://bugs.python.org/issue8785
Cheers,
Hagen
signature.asc
Description: OpenPGP digital signa
You shouldn't be asking questions about using Python on python-dev -- this
list is for development of Python.
Your problem is easily explained however: the second argument to p.findall()
should be an offset, not a flag set. (You are confusing re.findall() and
p.findall().)
--Guido
On Fri, May 21
Hi All,
I am working on a script to use re.findall,
But the result seems wield.
import re
p=re.compile("\S+",re.M)
pirfile="""
>DL;mm9|
>DL;petMar1|
>DL;cavPor3|
>DL;mm9|:
"""
for m in p.findall(pirfile,re.M):
pri