bpo-35224: Add support for NamedExpr to unparse.py (GH-11670)
This commit is contained in:
parent
8f59ee01be
commit
1396d8fab4
|
@ -79,6 +79,13 @@ class Unparser:
|
|||
self.fill()
|
||||
self.dispatch(tree.value)
|
||||
|
||||
def _NamedExpr(self, tree):
|
||||
self.write("(")
|
||||
self.dispatch(tree.target)
|
||||
self.write(" := ")
|
||||
self.dispatch(tree.value)
|
||||
self.write(")")
|
||||
|
||||
def _Import(self, t):
|
||||
self.fill("import ")
|
||||
interleave(lambda: self.write(", "), self.dispatch, t.names)
|
||||
|
|
Loading…
Reference in New Issue