diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-09-03 08:35:41 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-09-03 08:35:41 (GMT) |
commit | 32f453eaa476c78376cd721d29ba8ab726e400bb (patch) | |
tree | aec8b2e54ec4a0a7cbd66569d3a8531db118f153 /Lib/test/output | |
parent | 5d2b77cf31c5a3cbabc74936831480b9caea3a12 (diff) | |
download | cpython-32f453eaa476c78376cd721d29ba8ab726e400bb.zip cpython-32f453eaa476c78376cd721d29ba8ab726e400bb.tar.gz cpython-32f453eaa476c78376cd721d29ba8ab726e400bb.tar.bz2 |
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
Diffstat (limited to 'Lib/test/output')
-rw-r--r-- | Lib/test/output/test_pow | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/test/output/test_pow b/Lib/test/output/test_pow index e236862..9649936 100644 --- a/Lib/test/output/test_pow +++ b/Lib/test/output/test_pow @@ -22,8 +22,4 @@ The number in both columns should match. -3L -3L -7L -7L -3.0 3.0 --5.0 -5.0 --1.0 -1.0 --7.0 -7.0 |