mirror of
https://github.com/python/cpython.git
synced 2025-12-08 06:10:17 +00:00
Fix repl not coloring 'lazy' after 'from'
This commit is contained in:
parent
e6633ffeb8
commit
510c20081d
2 changed files with 2 additions and 1 deletions
|
|
@ -96,6 +96,7 @@ def test_gen_colors_keyword_highlighting(self):
|
|||
("list", [("list", "builtin")]),
|
||||
(" \n dict", [("dict", "builtin")]),
|
||||
(" lazy import", [("lazy", "soft_keyword"), ("import", "keyword")]),
|
||||
("lazy from cool_people import pablo", [('lazy', 'soft_keyword'), ('from', 'keyword'), ('import', 'keyword')])
|
||||
]
|
||||
for code, expected_highlights in cases:
|
||||
with self.subTest(code=code):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue