call site 15 for path.svnurl.new
path/testing/common.py - line 41
39
40
41
42
   def test_add_something(self):
       p = self.root.join('sample')
->     p = p + 'dir'
       assert p.check()
path/common.py - line 178
176
177
178
   def __add__(self, other):
       """ return new path object with 'other' added to the basename"""
->     return self.new(basename=self.basename+str(other))