[issue32211] Document the bug in re.findall() and re.finditer() in 2.7 and 3.6

2018-01-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset ca54740f257086393106d242644d450485180b96 by Serhiy Storchaka in branch '2.7': [2.7] bpo-32211: Document the existing bug in re.findall() and re.finditer(). (GH-4695). (#5096) https://github.com/python/cpython/commit/ca54740f257086393106d242644

[issue32211] Document the bug in re.findall() and re.finditer() in 2.7 and 3.6

2018-01-04 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue32211] Document the bug in re.findall() and re.finditer() in 2.7 and 3.6

2018-01-04 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +4965 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue32211] Document the bug in re.findall() and re.finditer() in 2.7 and 3.6

2018-01-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 1e6d8525f9dd3dcdc83adb93b164082c8b95d17a by Serhiy Storchaka in branch '3.6': bpo-32211: Document the existing bug in re.findall() and re.finditer(). (#4695) https://github.com/python/cpython/commit/1e6d8525f9dd3dcdc83adb93b164082c8b95d17a --

[issue32211] Document the bug in re.findall() and re.finditer() in 2.7 and 3.6

2017-12-04 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +4608 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-

[issue32211] Document the bug in re.findall() and re.finditer() in 2.7 and 3.6

2017-12-04 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : >>> re.findall(r'^|\w+', 'two words') ['', 'wo', 'words'] Seems the current behavior was documented incorrectly in issue732120. It will be fixed in 3.7 (see issue1647489, issue25054), but I hesitate to backport the fix to 3.6 and 2.7 because this can brea