[issue3384] Documentation for re.findall and re.finditer lacks ordering information

2008-07-19 Thread Georg Brandl
Georg Brandl [EMAIL PROTECTED] added the comment: Added info in r65139. -- resolution: - fixed status: open - closed ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3384 ___

[issue3384] Documentation for re.findall and re.finditer lacks ordering information

2008-07-19 Thread Joshua Kugler
Joshua Kugler [EMAIL PROTECTED] added the comment: That looks good. Thanks! ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3384 ___ ___ Python-bugs-list mailing

[issue3384] Documentation for re.findall and re.finditer lacks ordering information

2008-07-16 Thread Joshua Kugler
New submission from Joshua Kugler [EMAIL PROTECTED]: According to a discussion on comp.lang.python, re.findall and re.finditer scan strings from left to right, and returns them in the order it found them. It would be nice to note that in documentation. -- assignee: georg.brandl