One

More

To install the latest version:

pip install -U simplere

To easy_install under a specific Python version (3.3 in this example):

python3.3 -m easy_install --upgrade simplere

(You may need to prefix these with “sudo ” to authorize installation.)

enumerate(sequence[, start=0])

Return an iterator that yields tuples of an index and an item of the sequence. (And so on.)

simplere.testo(a, b=None)

This is a test of autofunction. Here is a long descriptoin of how things might work for this() and ReMatch and be concerend about.

Parameters:
  • a (str) – Something something
  • b (integer or None) – Else
Returns:

Names wanted

Return type:

list of strings

class simplere.ReMatch(match=None)

An easier-to-use proxy for regular expression match objects. Ideally this would be a subclass of the re module’s match object, but their type _sre.SRE_Match appears to be unsubclassable. Thus, ReMatch is a proxy exposes the match object’s numeric (positional) and named groups through indices and attributes. If a named group has the same name as a match object method or property, it takes precedence. Either change the name of the match group or access the underlying property thus: x._match.property

Table Of Contents

Previous topic

simplere

Next topic

Two

This Page