Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(1) | Call(1) | Derive(0) | Import(0)
Return a post-order iterator for the tree.
src/p/y/py3kwarn-HEAD/py3kwarn2to3/tests/test_pytree.py py3kwarn(Download)
c1 = pytree.Node(1000, [l1, l2]) n1 = pytree.Node(1000, [c1, l3]) self.assertEqual(list(n1.post_order()), [l1, l2, c1, l3, n1]) def test_pre_order(self):