summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJelle Zijlstra <jelle.zijlstra@gmail.com>2024-05-29 00:05:18 (GMT)
committerGitHub <noreply@github.com>2024-05-29 00:05:18 (GMT)
commita8e35e8ebad8c3bb44d14968aa05d1acbc028247 (patch)
treec07e14f67c1bd6774bddb90717976fc82e007998
parent548a11d5cf1dbb32d86ce0c045130c77f50c1427 (diff)
downloadcpython-a8e35e8ebad8c3bb44d14968aa05d1acbc028247.zip
cpython-a8e35e8ebad8c3bb44d14968aa05d1acbc028247.tar.gz
cpython-a8e35e8ebad8c3bb44d14968aa05d1acbc028247.tar.bz2
gh-119443: Turn off from __future__ import annotations in REPL (#119493)
-rw-r--r--Lib/_pyrepl/simple_interact.py2
-rw-r--r--Lib/test/test_pyrepl/test_interact.py9
-rw-r--r--Misc/NEWS.d/next/Library/2024-05-23-22-29-59.gh-issue-119443.KAGz6S.rst2
3 files changed, 12 insertions, 1 deletions
diff --git a/Lib/_pyrepl/simple_interact.py b/Lib/_pyrepl/simple_interact.py
index 975533a..b5f182e 100644
--- a/Lib/_pyrepl/simple_interact.py
+++ b/Lib/_pyrepl/simple_interact.py
@@ -100,7 +100,7 @@ class InteractiveColoredConsole(code.InteractiveConsole):
the_symbol = symbol if stmt is last_stmt else "exec"
item = wrapper([stmt])
try:
- code = compile(item, filename, the_symbol)
+ code = compile(item, filename, the_symbol, dont_inherit=True)
except (OverflowError, ValueError):
self.showsyntaxerror(filename)
return False
diff --git a/Lib/test/test_pyrepl/test_interact.py b/Lib/test/test_pyrepl/test_interact.py
index 10e3404..6ebd51f 100644
--- a/Lib/test/test_pyrepl/test_interact.py
+++ b/Lib/test/test_pyrepl/test_interact.py
@@ -94,3 +94,12 @@ class TestSimpleInteract(unittest.TestCase):
with patch.object(console, "showsyntaxerror") as mock_showsyntaxerror:
console.runsource(source)
mock_showsyntaxerror.assert_called_once()
+
+ def test_no_active_future(self):
+ console = InteractiveColoredConsole()
+ source = "x: int = 1; print(__annotations__)"
+ f = io.StringIO()
+ with contextlib.redirect_stdout(f):
+ result = console.runsource(source)
+ self.assertFalse(result)
+ self.assertEqual(f.getvalue(), "{'x': <class 'int'>}\n")
diff --git a/Misc/NEWS.d/next/Library/2024-05-23-22-29-59.gh-issue-119443.KAGz6S.rst b/Misc/NEWS.d/next/Library/2024-05-23-22-29-59.gh-issue-119443.KAGz6S.rst
new file mode 100644
index 0000000..4470c56
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2024-05-23-22-29-59.gh-issue-119443.KAGz6S.rst
@@ -0,0 +1,2 @@
+The interactive REPL no longer runs with ``from __future__ import
+annotations`` enabled. Patch by Jelle Zijlstra.