[Python-checkins] CVS: python/dist/src/Lib/test test_getopt.py,1.1,1.2

Guido van Rossum python-dev@python.org
Mon, 21 Aug 2000 15:59:31 -0700


Update of /cvsroot/python/python/dist/src/Lib/test
In directory slayer.i.sourceforge.net:/tmp/cvs-serv23751

Modified Files:
	test_getopt.py 
Log Message:
Don't reference a module named test.test_support.  Always use plain
test_support.  Also fixed the expected output.


Index: test_getopt.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_getopt.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** test_getopt.py	2000/08/20 04:18:40	1.1
--- test_getopt.py	2000/08/21 22:59:26	1.2
***************
*** 4,8 ****
  import getopt
  from getopt import GetoptError
! from test.test_support import verbose
  
  def expectException(teststr, expected, failure=AssertionError):
--- 4,8 ----
  import getopt
  from getopt import GetoptError
! from test_support import verbose
  
  def expectException(teststr, expected, failure=AssertionError):