[Spambayes-checkins] spambayes timcv.py,1.1,1.2

Tim Peters tim_one@users.sourceforge.net
Fri, 13 Sep 2002 12:59:37 -0700


Update of /cvsroot/spambayes/spambayes
In directory usw-pr-cvs1:/tmp/cvs-serv17794

Modified Files:
	timcv.py 
Log Message:
Msg.__init__:  tiny simplification.


Index: timcv.py
===================================================================
RCS file: /cvsroot/spambayes/spambayes/timcv.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** timcv.py	13 Sep 2002 19:33:04 -0000	1.1
--- timcv.py	13 Sep 2002 19:59:35 -0000	1.2
***************
*** 39,45 ****
          self.tag = path
          f = open(path, 'rb')
!         guts = f.read()
          f.close()
-         self.guts = guts
  
      def __iter__(self):
--- 39,44 ----
          self.tag = path
          f = open(path, 'rb')
!         self.guts = f.read()
          f.close()
  
      def __iter__(self):