summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-05-28 09:55:37 (GMT)
committerGitHub <noreply@github.com>2024-05-28 09:55:37 (GMT)
commit3b111a38ea1ae395a0c33106b232ed840627939b (patch)
tree2ca36bf7b4a3da16ef887e43d1d27de41ec30c92
parent9216a5336fc3c5b594bba1ae18779100c207b23f (diff)
downloadcpython-3b111a38ea1ae395a0c33106b232ed840627939b.zip
cpython-3b111a38ea1ae395a0c33106b232ed840627939b.tar.gz
cpython-3b111a38ea1ae395a0c33106b232ed840627939b.tar.bz2
[3.13] gh-116860: Remove outdated `test_parserhack` from `test_future` (GH-116861) (#119649)
gh-116860: Remove outdated `test_parserhack` from `test_future` (GH-116861) (cherry picked from commit 669175bf8edc2c02d48401bac0e4c7d99a33f15b) Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
-rw-r--r--Lib/test/test_future_stmt/test_future.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/Lib/test/test_future_stmt/test_future.py b/Lib/test/test_future_stmt/test_future.py
index 69ae58b..bb31d0a 100644
--- a/Lib/test/test_future_stmt/test_future.py
+++ b/Lib/test/test_future_stmt/test_future.py
@@ -171,26 +171,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)