]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] gh-116860: Remove outdated `test_parserhack` from `test_future` (GH-116861...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 28 May 2024 09:50:26 +0000 (11:50 +0200)
committerGitHub <noreply@github.com>
Tue, 28 May 2024 09:50:26 +0000 (09:50 +0000)
gh-116860: Remove outdated `test_parserhack` from `test_future` (GH-116861)
(cherry picked from commit 669175bf8edc2c02d48401bac0e4c7d99a33f15b)

Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Lib/test/test_future_stmt/test_future.py

index 8e67bcd72c91c5497b014b58a852a192c650f058..5a85e08e19b7b65f4e5c165de157d143e14a2013 100644 (file)
@@ -107,26 +107,6 @@ class FutureTest(unittest.TestCase):
         }
         self.assertCountEqual(set(flags.values()), flags.values())
 
-    def test_parserhack(self):
-        # test that the parser.c::future_hack function works as expected
-        # Note: although this test must pass, it's not testing the original
-        #       bug as of 2.6 since the with statement is not optional and
-        #       the parser hack disabled. If a new keyword is introduced in
-        #       2.6, change this to refer to the new future import.
-        try:
-            exec("from __future__ import print_function; print 0")
-        except SyntaxError:
-            pass
-        else:
-            self.fail("syntax error didn't occur")
-
-        try:
-            exec("from __future__ import (print_function); print 0")
-        except SyntaxError:
-            pass
-        else:
-            self.fail("syntax error didn't occur")
-
     def test_unicode_literals_exec(self):
         scope = {}
         exec("from __future__ import unicode_literals; x = ''", {}, scope)