call site 3 for path.svnurl.parts
path/testing/common.py - line 49
44
45
46
47
48
49
50
   def test_parts(self):
       newpath = self.root.join('sampledir', 'otherfile')
       par = newpath.parts()[-3:]
       assert par == [self.root, self.root.join('sampledir'), newpath]
   
->     revpar = newpath.parts(reverse=True)[:3]
       assert revpar == [newpath, self.root.join('sampledir'), self.root]