SHOW:
|
|
- or go back to the newest paste.
1 | - | #!/usr/bin/env python |
1 | + | #!/usr/bin/env python |
2 | - | |
2 | + | |
3 | - | |
3 | + | |
4 | - | from re_test_patterns_groups import test_patterns2 |
4 | + | from re_test_patterns_groups import test_patterns2 |
5 | - | |
5 | + | |
6 | - | test_patterns2( |
6 | + | test_patterns2( |
7 | - | 'abbaabbba', |
7 | + | 'abbaabbba', |
8 | - | [(r'a((a*)(b*))', 'a followed by 0-n a and 0-n b'), |
8 | + | [(r'a((a*)(b*))', 'a followed by 0-n a and 0-n b'), |
9 | ]) |