[Python-checkins] CVS: python/dist/src/Lib/test test___all__.py,1.13,1.14

Skip Montanaro montanaro@users.sourceforge.net
Thu, 15 Feb 2001 14:15:16 -0800


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

Modified Files:
	test___all__.py 
Log Message:
bunch more __all__ lists
also modified check_all function to suppress all warnings since they aren't
relevant to what this test is doing (allows quiet checking of regsub, for
instance)


Index: test___all__.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test___all__.py,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** test___all__.py	2001/02/12 03:27:31	1.13
--- test___all__.py	2001/02/15 22:15:14	1.14
***************
*** 3,6 ****
--- 3,9 ----
  
  def check_all(modname):
+     import warnings
+     warnings.filterwarnings("ignore", "", DeprecationWarning, modname)
+ 
      names = {}
      try:
***************
*** 125,127 ****
--- 128,156 ----
  check_all("pyclbr")
  check_all("quopri")
+ check_all("random")
+ check_all("re")
+ check_all("reconvert")
+ check_all("regex_syntax")
+ check_all("regsub")
+ check_all("repr")
+ check_all("rexec")
+ check_all("rfc822")
+ check_all("rlcompleter")
  check_all("robotparser")
+ check_all("sched")
+ check_all("sgmllib")
+ check_all("shelve")
+ check_all("shlex")
+ check_all("shutil")
+ check_all("smtpd")
+ check_all("smtplib")
+ check_all("sndhdr")
+ check_all("socket")
+ check_all("sre")
+ check_all("sre_compile")
+ check_all("sre_constants")
+ check_all("sre_parse")
+ check_all("stat")
+ check_all("stat_cache")
+ check_all("statvfs")
+ check_all("string")