[Python-checkins] CVS: python/dist/src/Lib/test/output test_pow,1.1,1.2
Tim Peters
tim_one@users.sourceforge.net
Mon, 03 Sep 2001 01:35:42 -0700
Update of /cvsroot/python/python/dist/src/Lib/test/output
In directory usw-pr-cvs1:/tmp/cvs-serv12739/python/Lib/test/output
Modified Files:
test_pow
Log Message:
New restriction on pow(x, y, z): If z is not None, x and y must be of
integer types, and y must be >= 0. See discussion at
http://sf.net/tracker/index.php?func=detail&aid=457066&group_id=5470&atid=105470
Index: test_pow
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/output/test_pow,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** test_pow 1996/12/20 03:14:42 1.1
--- test_pow 2001/09/03 08:35:40 1.2
***************
*** 23,29 ****
-7L -7L
- 3.0 3.0
- -5.0 -5.0
- -1.0 -1.0
- -7.0 -7.0
--- 23,25 ----