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

Fred L. Drake fdrake@users.sourceforge.net
Thu, 25 Oct 2001 11:11:13 -0700


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

Modified Files:
	test_sundry.py 
Log Message:
Ignore the posixfile deprecation warning for the test suite.

Index: test_sundry.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_sundry.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** test_sundry.py	2001/07/11 22:21:17	1.6
--- test_sundry.py	2001/10/25 18:11:10	1.7
***************
*** 1,4 ****
--- 1,7 ----
  """Do a minimal test of all the modules that aren't otherwise tested."""
  
+ import warnings
+ warnings.filterwarnings('ignore', '', DeprecationWarning, 'posixfile')
+ 
  from test_support import verbose