Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 14th, 2012  |  syntax: None  |  size: 0.17 KB  |  hits: 19  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. >>> import re
  2. >>> COMMIT_RE = re.compile(r'(?:^|(\s))r(\d+)')
  3. >>> COMMIT_RE.search("wr0ngway")
  4. >>> COMMIT_RE.search("r123")
  5. <_sre.SRE_Match object at 0x7fa507d56c68>