summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_peepholer.py
diff options
context:
space:
mode:
authorMark Dickinson <mdickinson@enthought.com>2011-03-23 17:59:37 (GMT)
committerMark Dickinson <mdickinson@enthought.com>2011-03-23 17:59:37 (GMT)
commit7c9e80328458de501a544b5c24342d969bcbe76d (patch)
treee2dc7e2c637c6b7584b8d1b9bfa84906905096ac /Lib/test/test_peepholer.py
parentba7b560c1d3aca8dac21e824c7d4a11e7f584e76 (diff)
downloadcpython-7c9e80328458de501a544b5c24342d969bcbe76d.zip
cpython-7c9e80328458de501a544b5c24342d969bcbe76d.tar.gz
cpython-7c9e80328458de501a544b5c24342d969bcbe76d.tar.bz2
Issue #11244: Remove outdated peepholer check that was preventing the peepholer from folding -0 and -0.0. Thanks Eugene Toder for the patch.
Diffstat (limited to 'Lib/test/test_peepholer.py')
-rw-r--r--Lib/test/test_peepholer.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/Lib/test/test_peepholer.py b/Lib/test/test_peepholer.py
index f73565e..78de909 100644
--- a/Lib/test/test_peepholer.py
+++ b/Lib/test/test_peepholer.py
@@ -3,6 +3,7 @@ import re
import sys
from io import StringIO
import unittest
+from math import copysign
def disassemble(func):
f = StringIO()
@@ -207,6 +208,9 @@ class TestTranforms(unittest.TestCase):
def test_folding_of_unaryops_on_constants(self):
for line, elem in (
('-0.5', '(-0.5)'), # unary negative
+ ('-0.0', '(-0.0)'), # -0.0
+ ('-(1.0-1.0)','(-0.0)'), # -0.0 after folding
+ ('-0', '(0)'), # -0
('~-2', '(1)'), # unary invert
('+1', '(1)'), # unary positive
):
@@ -214,6 +218,13 @@ class TestTranforms(unittest.TestCase):
self.assertIn(elem, asm, asm)
self.assertNotIn('UNARY_', asm)
+ # Check that -0.0 works after marshaling
+ def negzero():
+ return -(1.0-1.0)
+
+ self.assertNotIn('UNARY_', disassemble(negzero))
+ self.assertTrue(copysign(1.0, negzero()) < 0)
+
# Verify that unfoldables are skipped
for line, elem in (
('-"abc"', "('abc')"), # unary negative