[Spambayes-checkins] spambayes/testtools mboxtest.py,1.1.2.1,1.1.2.2

Anthony Baxter anthonybaxter at users.sourceforge.net
Sun Jan 12 22:45:42 EST 2003


Update of /cvsroot/spambayes/spambayes/testtools
In directory sc8-pr-cvs1:/tmp/cvs-serv2675/testtools

Modified Files:
      Tag: reorg-branch
	mboxtest.py 
Log Message:
distutils ate my brain. Rather than continue down the horrible horrible
path of distutils madness, take a less nuanced approach to the sets.py and
heapq.py modules.


Index: mboxtest.py
===================================================================
RCS file: /cvsroot/spambayes/spambayes/testtools/Attic/mboxtest.py,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -C2 -d -r1.1.2.1 -r1.1.2.2
*** mboxtest.py	10 Jan 2003 10:41:08 -0000	1.1.2.1
--- mboxtest.py	13 Jan 2003 06:45:40 -0000	1.1.2.2
***************
*** 25,29 ****
  import random
  import re
! from sets import Set
  import sys
  
--- 25,32 ----
  import random
  import re
! try: 
!     from sets import Set
! except ImportError:
!     from spambayes.compatsets import Set
  import sys
  





More information about the Spambayes-checkins mailing list