[Python-checkins] python/dist/src/Lib/test test_pickle.py,1.15,1.16

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Thu, 30 Jan 2003 13:27:41 -0800


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

Modified Files:
	test_pickle.py 
Log Message:
pickle.py has a few doctest'ed internal functions, so run their tests.


Index: test_pickle.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_pickle.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** test_pickle.py	29 Jan 2003 17:58:44 -0000	1.15
--- test_pickle.py	30 Jan 2003 21:27:37 -0000	1.16
***************
*** 70,73 ****
--- 70,74 ----
      suite.addTest(loader.loadTestsFromTestCase(PersPicklerTests))
      test_support.run_suite(suite)
+     test_support.run_doctest(pickle)
  
  if __name__ == "__main__":