On 01/05/13 11:24, Tim Chase wrote:
 I don't know how this version times out:

    import re
    r = re.compile(r"[-+](\d+)([^-+]*)")
    def modify(m):
        result = m.group(2)[int(m.group(1)):]
        return result

Doh, I intended to change this after testing, making it just

  returm m.group(2)[int(m.group(1)):]

rather than expending an intermediate variable I used for testing

-tkc


--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to