Files
openide/python/testData/regexp/notEmptyGroup.py

8 lines
96 B
Python

import re
some_re = re.compile(r"""
(?P<abc>abc)
(?P<name>
(?(abc)yes|noo)
)
""", re.VERBOSE)