RegExp ====== .. py:currentmodule:: nsre.regexp The :py:mod:`nsre.regexp` module contains the algorithms for executing the regular expressions themselves and then transforming them into matches. The centerpiece of this is :py:class:`RegExp`. Please note that the reference talks about a lot of private methods which are documented in the code but not displayed here. You should focus on :py:meth:`RegExp.from_ast` and :py:meth:`RegExp.match`. Reference --------- .. automodule:: nsre.regexp :members: