[Python-checkins] CVS: python/dist/src/Lib/test test_descr.py,1.1.2.1,1.1.2.2
Guido van Rossum
gvanrossum@users.sourceforge.net
2001年4月29日 15:17:03 -0700
Update of /cvsroot/python/python/dist/src/Lib/test
In directory usw-pr-cvs1:/tmp/cvs-serv31723
Modified Files:
Tag: descr-branch
test_descr.py
Log Message:
Fix a typo in a default value pointed out by /F.
Fortunately, the defaults were just used as examples.
Index: test_descr.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/Attic/test_descr.py,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -C2 -r1.1.2.1 -r1.1.2.2
*** test_descr.py 2001年04月29日 15:48:33 1.1.2.1
--- test_descr.py 2001年04月29日 22:17:01 1.1.2.2
***************
*** 26,30 ****
verify(bm(b) == res)
! def testternop(a, b, c, res, expr="a]b:c]", meth="__getslice__"):
if verbose: print "checking", expr
dict = {'a': a, 'b': b, 'c': c}
--- 26,30 ----
verify(bm(b) == res)
! def testternop(a, b, c, res, expr="a[b:c]", meth="__getslice__"):
if verbose: print "checking", expr
dict = {'a': a, 'b': b, 'c': c}