aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_peg_parser.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_peg_parser.py')
-rw-r--r--Lib/test/test_peg_parser.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/test/test_peg_parser.py b/Lib/test/test_peg_parser.py
index 6ccb2573176..fae85e323da 100644
--- a/Lib/test/test_peg_parser.py
+++ b/Lib/test/test_peg_parser.py
@@ -153,6 +153,13 @@ TEST_CASES = [
('dict_comp', '{x:1 for x in a}'),
('dict_comp_if', '{x:1+2 for x in a if b}'),
('dict_empty', '{}'),
+ ('empty_line_after_linecont',
+ r'''
+ pass
+ \
+
+ pass
+ '''),
('for',
'''
for i in a: