call site 5 for path.svnwc.__str__
path/svn/testing/test_wccommand.py - line 39
37
38
39
40
41
   def test_move_directory(self): # overrides base class
       try:
->         super(TestWCSvnCommandPath, self).test_move_directory()
       finally:
           self.root.revert(rec=1)
path/testing/fscommon.py - line 214
211
212
213
214
215
216
217
   def test_move_directory(self):
       source = self.root.join('sampledir') 
       dest = self.root.join('moveddir') 
->     source.move(dest)
       assert dest.check(dir=1)
       assert dest.join('otherfile').check(file=1) 
       assert not source.join('sampledir').check()
path/common.py - line 368
363
364
365
366
367
368
369
370
371
   def move(self, target):
       """ move this path to target. """
       if target.relto(self):
           raise py.error.EINVAL(target, "cannot move path into a subdirectory of itself")
       try:
->         self.rename(target)
       except py.error.EXDEV:  # invalid cross-device link
           self.copy(target)
           self.remove()
path/svn/wccommand.py - line 209
207
208
209
   def rename(self, target):
       """ rename this path to target. """
->     py.process.cmdexec("svn move --force %s %s" %(str(self), str(target)))