We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
TestPyReplAutoindent.test_auto_indent_default()
1 parent 8679c8d commit 28fbf50Copy full SHA for 28fbf50
1 file changed
Lib/test/test_pyrepl/test_pyrepl.py
@@ -452,6 +452,11 @@ def test_auto_indent_default(self):
452
)
453
# fmt: on
454
455
+ events = code_to_events(input_code)
456
+ reader = self.prepare_reader(events)
457
+ output = multiline_input(reader)
458
+ self.assertEqual(output, output_code)
459
+
460
def test_auto_indent_continuation(self):
461
# auto indenting according to previous user indentation
462
# fmt: off
0 commit comments