[Python-checkins] python/dist/src/Lib/test test_multifile.py, 1.3, 1.4

mwh at users.sourceforge.net mwh at users.sourceforge.net
Tue Aug 3 13:14:11 CEST 2004


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28909

Modified Files:
	test_multifile.py 
Log Message:
More "noone expected this to run twice"ness removal.


Index: test_multifile.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_multifile.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** test_multifile.py	17 Feb 2003 14:51:41 -0000	1.3
--- test_multifile.py	3 Aug 2004 11:14:09 -0000	1.4
***************
*** 37,43 ****
  """
  
- boundaries = 0
- linecount = 0
- 
  def getMIMEMsg(mf):
      global boundaries, linecount
--- 37,40 ----
***************
*** 58,61 ****
--- 55,61 ----
  
  def test_main():
+     global boundaries, linecount
+     boundaries = 0
+     linecount = 0
      f = cStringIO.StringIO(msg)
      getMIMEMsg(multifile.MultiFile(f))



More information about the Python-checkins mailing list