[Python-checkins] CVS: python/dist/src/Lib/test test_strop.py,1.12,1.13
Guido van Rossum
gvanrossum@users.sourceforge.net
2001年5月14日 19:14:47 -0700
Update of /cvsroot/python/python/dist/src/Lib/test
In directory usw-pr-cvs1:/tmp/cvs-serv26415/Lib/test
Modified Files:
test_strop.py
Log Message:
Add warnings to the strop module, for to those functions that really
*are* obsolete; three variables and the maketrans() function are not
(yet) obsolete.
Add a compensating warnings.filterwarnings() call to test_strop.py.
Add this to the NEWS.
Index: test_strop.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_strop.py,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -r1.12 -r1.13
*** test_strop.py 2001年05月10日 01:23:39 1.12
--- test_strop.py 2001年05月15日 02:14:44 1.13
***************
*** 1,3 ****
--- 1,5 ----
from test_support import verbose
+ import warnings
+ warnings.filterwarnings("ignore", "", DeprecationWarning, __name__)
import strop, sys