[Python-checkins] python/dist/src/Lib/test test_rotor.py,1.5,1.6

akuchling@users.sourceforge.net akuchling@users.sourceforge.net
Thu, 24 Apr 2003 06:18:28 -0700


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

Modified Files:
	test_rotor.py 
Log Message:
[Patch #679505] Silence DeprecationWarning when testing rotor module

Index: test_rotor.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_rotor.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** test_rotor.py	12 Dec 2000 23:11:42 -0000	1.5
--- test_rotor.py	24 Apr 2003 13:18:25 -0000	1.6
***************
*** 1,2 ****
--- 1,8 ----
+ import warnings
+ 
+ warnings.filterwarnings("ignore",
+                         category=DeprecationWarning,
+                         message='.*is deprecated', module=__name__)
+ 
  import rotor