HomeSort by relevance Sort by last modified time
    Searched refs:walk_path (Results 1 - 2 of 2) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_os.py 402 walk_path = join(test_support.TESTFN, "TEST1")
403 sub1_path = join(walk_path, "SUB1")
405 sub2_path = join(walk_path, "SUB2")
406 tmp1_path = join(walk_path, "tmp1")
428 all = list(os.walk(walk_path))
435 self.assertEqual(all[0], (walk_path, ["SUB1", "SUB2"], ["tmp1"]))
442 for root, dirs, files in os.walk(walk_path):
449 self.assertEqual(all[0], (walk_path, ["SUB2"], ["tmp1"]))
453 all = list(os.walk(walk_path, topdown=False))
460 self.assertEqual(all[3], (walk_path, ["SUB1", "SUB2"], ["tmp1"])
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_os.py 402 walk_path = join(test_support.TESTFN, "TEST1")
403 sub1_path = join(walk_path, "SUB1")
405 sub2_path = join(walk_path, "SUB2")
406 tmp1_path = join(walk_path, "tmp1")
428 all = list(os.walk(walk_path))
435 self.assertEqual(all[0], (walk_path, ["SUB1", "SUB2"], ["tmp1"]))
442 for root, dirs, files in os.walk(walk_path):
449 self.assertEqual(all[0], (walk_path, ["SUB2"], ["tmp1"]))
453 all = list(os.walk(walk_path, topdown=False))
460 self.assertEqual(all[3], (walk_path, ["SUB1", "SUB2"], ["tmp1"])
    [all...]

Completed in 106 milliseconds