[Python-checkins] CVS: python/dist/src/Demo/parser test_parser.py,1.3,1.4

Fred L. Drake python-dev@python.org
Wed, 23 Aug 2000 13:21:33 -0700


Update of /cvsroot/python/python/dist/src/Demo/parser
In directory slayer.i.sourceforge.net:/tmp/cvs-serv21944/Demo/parser

Modified Files:
	test_parser.py 
Log Message:

Sort the list of files processed before running the test on each.


Index: test_parser.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Demo/parser/test_parser.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** test_parser.py	1998/09/14 16:43:53	1.3
--- test_parser.py	2000/08/23 20:21:31	1.4
***************
*** 41,44 ****
--- 41,45 ----
          import glob
          args = glob.glob("*.py")
+         args.sort()
      map(testFile, args)
      sys.exit(_numFailed != 0)
***************
*** 46,50 ****
  if __name__ == '__main__':
      test()
- 
- #
- #  end of file
--- 47,48 ----