[issue35653] All regular expression match groups are the empty string

2019-01-05 Thread adiba
Change by adiba : -- nosy: -adiba, ezio.melotti, mrabarnett ___ Python tracker <https://bugs.python.org/issue35653> ___ ___ Python-bugs-list mailing list Unsub

[issue35653] All regular expression match groups are the empty string

2019-01-03 Thread adiba
New submission from adiba : This is the regular expression: ^(?:(\d*)(\D*))*$ This is the test string: 42AZ This is the expectation for the match groups: ('42', 'AZ') This is the actual return value: ('', '') https://gist.github.com/adiba/791ba943a1102994d43171dc98aaecd0 -- components