[Python-checkins] python/dist/src/Lib/test test_xmllib.py,1.6,1.7
tim_one@sourceforge.net
tim_one@sourceforge.net
2002年4月11日 13:18:42 -0700
Update of /cvsroot/python/python/dist/src/Lib/test
In directory usw-pr-cvs1:/tmp/cvs-serv28479/Lib/test
Modified Files:
test_xmllib.py
Log Message:
Since xmllib is deprecated now, suppress the DeprecationWarning its test
module necessarily raises.
Index: test_xmllib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_xmllib.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** test_xmllib.py 20 Sep 2001 21:33:42 -0000 1.6
--- test_xmllib.py 11 Apr 2002 20:18:40 -0000 1.7
***************
*** 14,21 ****
"""
import test_support
import unittest
import xmllib
-
class XMLParserTestCase(unittest.TestCase):
--- 14,25 ----
"""
+ import warnings
+ warnings.filterwarnings("ignore", ".* xmllib .* obsolete.*",
+ DeprecationWarning)
+ del warnings
+
import test_support
import unittest
import xmllib
class XMLParserTestCase(unittest.TestCase):