MCPcopy Index your code
hub / github.com/python/cpython / print

Method print

Tools/cases_generator/parsing.py:156–160  ·  view source on GitHub ↗
(self, out:CWriter)

Source from the content-addressed store, hash-verified

154 body: Stmt
155
156 def print(self, out:CWriter) -> None:
157 out.emit(self.while_)
158 for tkn in self.condition:
159 out.emit(tkn)
160 self.body.print(out)
161
162 def accept(self, visitor: Visitor) -> None:
163 visitor(self)

Callers

nothing calls this directly

Calls 2

emitMethod · 0.45
printMethod · 0.45

Tested by

no test coverage detected