MCPcopy Create free account
hub / github.com/boostorg/build / pprint

Method pprint

test/tree.py:77–84  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

75 return self.children is None
76
77 def pprint(self):
78 print(" * Node name: %s" % self.name)
79 print(" Path: %s" % self.path)
80 print(" Contents: %s" % self.contents)
81 if self.is_file():
82 print(" Children: is a file.")
83 else:
84 print(" Children: %d" % len(self.children))
85
86
87class TreeDifference:

Callers 2

fail_testMethod · 0.45
expect_nothing_moreMethod · 0.45

Calls 1

is_fileMethod · 0.95

Tested by

no test coverage detected