mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
gh-119443: Turn off from __future__ import annotations in REPL (#119493)
This commit is contained in:
parent
548a11d5cf
commit
a8e35e8eba
3 changed files with 12 additions and 1 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue