Mark Summerfield <m...@qtrac.eu> added the comment: On the PyPI page: http://pypi.python.org/pypi/regex/0.1.20100706.1 in the "Subscripting for groups" bullet it gives this pattern:
r"(?<before>.*?)(?<num>\\d+)(?<after>.*)" Shouldn't this be: r"(?P<before>.*?)(?P<num>\\d+)(?P<after>.*)" Or has a new syntax been introduced? ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue2636> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com