mirror of
https://github.com/python/cpython.git
synced 2025-12-08 02:08:20 +00:00
fix indentation
This commit is contained in:
parent
e451ec393f
commit
71ce8970cf
1 changed files with 1 additions and 1 deletions
|
|
@ -738,7 +738,7 @@ class ASTValidatorTests(unittest.TestCase):
|
||||||
l = ast.Name("x", ast.Load())
|
l = ast.Name("x", ast.Load())
|
||||||
s = ast.Name("y", ast.Store())
|
s = ast.Name("y", ast.Store())
|
||||||
for args in (s, l, l), (l, s, l), (l, l, s):
|
for args in (s, l, l), (l, s, l), (l, l, s):
|
||||||
self.expr(ast.IfExp(*args), "must have Load context")
|
self.expr(ast.IfExp(*args), "must have Load context")
|
||||||
|
|
||||||
def test_dict(self):
|
def test_dict(self):
|
||||||
d = ast.Dict([], [ast.Name("x", ast.Load())])
|
d = ast.Dict([], [ast.Name("x", ast.Load())])
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue