diff options
Diffstat (limited to 'Lib/test/re_tests.py')
| -rwxr-xr-x | Lib/test/re_tests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/re_tests.py b/Lib/test/re_tests.py index 953e4fd..d6f04f0 100755 --- a/Lib/test/re_tests.py +++ b/Lib/test/re_tests.py @@ -646,6 +646,8 @@ xyzabc (r'a[^>]*?b', 'a>b', FAIL), # bug 490573: minimizing repeat problem (r'^a*?$', 'foo', FAIL), + # bug 470582: nested groups problem + (r'^((a)c)?(ab)$', 'ab', SUCCEED, 'g1+"-"+g2+"-"+g3', 'None-None-ab'), ] try: |
