From: Mark Wooding Date: Mon, 8 Dec 2008 02:22:23 +0000 (+0000) Subject: python: Replace sre by plain re. X-Git-Tag: 1.0.0pre8~66 X-Git-Url: https://git.distorted.org.uk/~mdw/tripe/commitdiff_plain/c55f0b7ced2cc3112408f967a55556a0e525c2c7 python: Replace sre by plain re. Annoyingly, Python 2.4 documentation suggests that sre is the right module to use. --- diff --git a/keys/tripe-keys.in b/keys/tripe-keys.in index 1e56282b..3ca2834b 100644 --- a/keys/tripe-keys.in +++ b/keys/tripe-keys.in @@ -30,7 +30,7 @@ import catacomb as C import os as OS import sys as SYS -import sre as RX +import re as RX import getopt as O import shutil as SH import filecmp as FC diff --git a/mon/tripemon.in b/mon/tripemon.in index 912f7d0b..c71644aa 100644 --- a/mon/tripemon.in +++ b/mon/tripemon.in @@ -11,7 +11,7 @@ import math as M import sets as SET import getopt as O import time as T -import sre as RX +import re as RX from cStringIO import StringIO import pygtk