mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
bpo-28395: Remove unnecessary semicolons in tests (GH-26868)
(cherry picked from commit 5a3108044d
)
Co-authored-by: Dong-hee Na <donghee.na@python.org>
This commit is contained in:
parent
7e6cad7e30
commit
280425d417
8 changed files with 31 additions and 30 deletions
|
@ -182,21 +182,21 @@ class CodeopTests(unittest.TestCase):
|
|||
ai("from a import (b,c")
|
||||
ai("from a import (b,c,")
|
||||
|
||||
ai("[");
|
||||
ai("[a");
|
||||
ai("[a,");
|
||||
ai("[a,b");
|
||||
ai("[a,b,");
|
||||
ai("[")
|
||||
ai("[a")
|
||||
ai("[a,")
|
||||
ai("[a,b")
|
||||
ai("[a,b,")
|
||||
|
||||
ai("{");
|
||||
ai("{a");
|
||||
ai("{a:");
|
||||
ai("{a:b");
|
||||
ai("{a:b,");
|
||||
ai("{a:b,c");
|
||||
ai("{a:b,c:");
|
||||
ai("{a:b,c:d");
|
||||
ai("{a:b,c:d,");
|
||||
ai("{")
|
||||
ai("{a")
|
||||
ai("{a:")
|
||||
ai("{a:b")
|
||||
ai("{a:b,")
|
||||
ai("{a:b,c")
|
||||
ai("{a:b,c:")
|
||||
ai("{a:b,c:d")
|
||||
ai("{a:b,c:d,")
|
||||
|
||||
ai("a(")
|
||||
ai("a(b")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue