[Python-checkins] CVS: python/dist/src/Lib/test test_bsddb.py,1.8,1.9 test_sundry.py,1.7,1.8

Guido van Rossum gvanrossum@users.sourceforge.net
Fri, 07 Dec 2001 08:43:21 -0800


Update of /cvsroot/python/python/dist/src/Lib/test
In directory usw-pr-cvs1:/tmp/cvs-serv7403

Modified Files:
	test_bsddb.py test_sundry.py 
Log Message:
Move import dbhash out of test_sundry and into test_bsddb,
so that test_sundry won't fail if the bsddb module is absent.

Index: test_bsddb.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_bsddb.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** test_bsddb.py	2001/03/22 00:38:40	1.8
--- test_bsddb.py	2001/12/07 16:43:19	1.9
***************
*** 6,9 ****
--- 6,10 ----
  import os
  import bsddb
+ import dbhash # Just so we know it's imported
  import tempfile
  from test_support import verbose, verify

Index: test_sundry.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_sundry.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** test_sundry.py	2001/10/25 18:11:10	1.7
--- test_sundry.py	2001/12/07 16:43:19	1.8
***************
*** 26,30 ****
      if verbose:
          print "skipping curses"
- import dbhash
  import dircache
  import dis
--- 26,29 ----