MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / visit_AugAssign

Method visit_AugAssign

tools/python-3.11.9-amd64/Lib/ast.py:879–883  ·  view source on GitHub ↗
(self, node)

Source from the content-addressed store, hash-verified

877 self.write(type_comment)
878
879 def visit_AugAssign(self, node):
880 self.fill()
881 self.traverse(node.target)
882 self.write(" " + self.binop[node.op.__class__.__name__] + "= ")
883 self.traverse(node.value)
884
885 def visit_AnnAssign(self, node):
886 self.fill()

Callers

nothing calls this directly

Calls 3

fillMethod · 0.95
traverseMethod · 0.95
writeMethod · 0.95

Tested by

no test coverage detected