Every line of 'var dump python' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
97 def dump(self, indent=0): 98 print((' ' * indent) + self.name, 'start') 99 for child in self.children: 100 child.dump(indent + 1) 101 print((' ' * indent) + self.name, 'end')