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

Method pprint

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

Source from the content-addressed store, hash-verified

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

Callers 2

fail_testMethod · 0.45
expect_nothing_moreMethod · 0.45

Calls 1

is_fileMethod · 0.95

Tested by

no test coverage detected