summaryrefslogtreecommitdiff
path: root/Lib/test/test_math.py
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2023-02-05 16:36:33 +0000
committerGitHub <noreply@github.com>2023-02-05 16:36:33 +0000
commit0672a6c23b2b72666e10d9c61fc025e66aad9c2b (patch)
tree369081c41c392803bc1354a3c26eccf5dd5439c7 /Lib/test/test_math.py
parent19ac43629e6fd73f2dbf9fd5a0b97d791c28acc7 (diff)
downloadcpython-git-0672a6c23b2b72666e10d9c61fc025e66aad9c2b.tar.gz
Revert "gh-89381: Fix invalid signatures of math/cmath.log (#101404)" (#101580)
This reverts commit 0ef92d979311ba82d4c41b22ef38e12e1b08b13d.
Diffstat (limited to 'Lib/test/test_math.py')
-rw-r--r--Lib/test/test_math.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py
index 8d849045b2..433161c2dd 100644
--- a/Lib/test/test_math.py
+++ b/Lib/test/test_math.py
@@ -1146,7 +1146,6 @@ class MathTests(unittest.TestCase):
self.ftest('log(1/e)', math.log(1/math.e), -1)
self.ftest('log(1)', math.log(1), 0)
self.ftest('log(e)', math.log(math.e), 1)
- self.ftest('log(e, None)', math.log(math.e, None), 1)
self.ftest('log(32,2)', math.log(32,2), 5)
self.ftest('log(10**40, 10)', math.log(10**40, 10), 40)
self.ftest('log(10**40, 10**20)', math.log(10**40, 10**20), 2)